-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResonantRise4Dev.xml
1411 lines (1245 loc) · 91.2 KB
/
ResonantRise4Dev.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<version>
<pack>
<version>a.0.4.9</version>
<minecraft>1.9.4</minecraft>
<memory>2560</memory>
<permgen>256</permgen>
<caseallfiles>upper</caseallfiles>
<mainclass>net.minecraft.launchwrapper.Launch</mainclass>
<extraarguments>--tweakClass=net.minecraftforge.fml.common.launcher.FMLTweaker --versionType Forge</extraarguments>
</pack>
<libraries>
<library url="packs/ResonantRiseDev/files/Forge/194-1968/launchwrapper-1.12.jar" download="server" file="launchwrapper-1.12.jar" md5="934b2d91c7c5be4a49577c9e6b40e8da" server="net/minecraft/launchwrapper/1.12/launchwrapper-1.12.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/asm-all-5.0.3.jar" download="server" file="asm-all-5.0.3.jar" md5="c5cc4613bbdfba3ccf5f0ab85390d0b8" server="org/ow2/asm/asm-all/5.0.3/asm-all-5.0.3.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/jline-2.13.jar" download="server" file="jline-2.13.jar" md5="f251ba666cccb260ff7215b2cbeee8d4" server="jline/jline/2.13/jline-2.13.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/akka-actor_2.11-2.3.3.jar" download="server" file="akka-actor_2.11-2.3.3.jar" md5="2a3d8946f684f928c48a2dd298c5cd29" server="com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/config-1.2.1.jar" download="server" file="config-1.2.1.jar" md5="a88c2f8be90a5c41b87155cdff21e0db" server="com/typesafe/config/1.2.1/config-1.2.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-actors-migration_2.11-1.1.0.jar" download="server" file="scala-actors-migration_2.11-1.1.0.jar" md5="f5e79398daa1806f8b17311a3c782723" server="org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-compiler-2.11.1.jar" download="server" file="scala-compiler-2.11.1.jar" md5="06030143bf86ca896fb6ccfd679b5760" server="org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-continuations-library_2.11-1.0.2.jar" download="server" file="scala-continuations-library_2.11-1.0.2.jar" md5="c7d01e5a88182df7f22b7418abb51085" server="org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-continuations-plugin_2.11.1-1.0.2.jar" download="server" file="scala-continuations-plugin_2.11.1-1.0.2.jar" md5="daecef8fab296b764a8fb41fc07f2428" server="org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-library-2.11.1.jar" download="server" file="scala-library-2.11.1.jar" md5="1d88f665219e6006c5dd82d71c525c0f" server="org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-parser-combinators_2.11-1.0.1.jar" download="server" file="scala-parser-combinators_2.11-1.0.1.jar" md5="4e694499c965af4a02599c99d4f0b196" server="org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-reflect-2.11.1.jar" download="server" file="scala-reflect-2.11.1.jar" md5="7878fac044e4e4b576bb35a77ccc34fc" server="org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-swing_2.11-1.0.1.jar" download="server" file="scala-swing_2.11-1.0.1.jar" md5="1009d69e4948045383f2a7a334348af5" server="org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/scala-xml_2.11-1.0.2.jar" download="server" file="scala-xml_2.11-1.0.2.jar" md5="c2d7e66495afe14545c31b21e99879ef" server="org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/lzma-0.0.1.jar" download="server" file="lzma-0.0.1.jar" md5="a3e3c3186e41c4a1a3027ba2bb23cdc6" server="lzma/lzma/0.0.1/lzma-0.0.1.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/jopt-simple-4.6.jar" download="server" file="jopt-simple-4.6.jar" md5="13560a58a79b46b82057686543e8d727" server="net/sf/jopt-simple/jopt-simple/4.6/jopt-simple-4.6.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/vecmath-1.5.2.jar" download="server" file="vecmath-1.5.2.jar" md5="e5d2b7f46c4800a32f62ce75676a5710" server="java3d/vecmath/1.5.2/vecmath-1.5.2.jar" />
<library url="packs/ResonantRiseDev/files/Forge/194-1968/trove4j-3.0.3.jar" download="server" file="trove4j-3.0.3.jar" md5="8fc4d4e0129244f9fd39650c5f30feb2" server="net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar" />
</libraries>
<!-- Colors for the use of seperation -->
<colours>
<!-- RR Red -->
<colour name="rred" code="#ED2121"
/>
<!-- Dark Cyan -->
<colour name="lite" code="#00787A"
/>
<!-- Orange -->
<colour name="risk" code="#FF9900"
/>
<!-- Pastel Lavender -->
<colour name="appeng" code="#9043DE"
/>
<!-- Light Brown -->
<colour name="Biblio" code="#915E2B"
/>
<!-- Yellow -->
<colour name="BC" code="#FFD900"
/>
<!-- Iron -->
<colour name="Chisel" code="#879978"
/>
<!-- Ender Green -->
<colour name="EIO" code="#0FC70A"
/>
<!-- Light Fuisha -->
<colour name="Ex" code="#FF99FF"
/>
<!-- Green -->
<colour name="For" code="#00AD00"
/>
<!-- Blue -->
<colour name="GC" code="#B8BD5C"
/>
<!-- Tan(-ish) -->
<colour name="Hyd" code="#757542"
/>
<!-- Odd Fuisha -->
<colour name="Im" code="#A074A8"
/>
<!-- Cyan -->
<colour name="Mek" code="#00AB94"
/>
<!-- Greeinish-Brown -->
<colour name="MPS" code="#4CB233"
/>
<!-- Dark Blue -->
<colour name="Open" code="#3D5CA3"
/>
<!-- Red-Orange -->
<colour name="QB" code="#FF2400"
/>
<!-- Purple -->
<colour name="TC4" code="#B352AC"
/>
<!-- Rust -->
<colour name="TiCo" code="#806633"
/>
<!-- IC2 -->
<colour name="IC2" code="#C4A589"
/>
</colours>
<!-- End Colours -->
<mods>
<!-- Forge -->
<mod name="=== Forge ===" version="1.0"
url="packs/ResonantRiseDev/files/4.x/zone00.zip" file="zone00.zip" md5="76cdb2bad9582d23c1f6f4d868218d6c" download="server"
type="extract" extractto="root" colour="GC"
website="http://resonant-rise.com"
authors="RR Dev Team"
description="Minecraft Forge."
/>
<mod name="Minecraft Forge" version="1.9.4-12.17.0.1968"
url="packs/ResonantRiseDev/files/Forge/forge-1.9.4-12.17.0.1968-universal.jar" file="forge-1.9.4-12.17.0.1968-universal.jar" md5="38a270df4ff7118e70db9da7bce8d464" download="server"
type="forge"
website="http://www.minecraftforge.net/forum/" donation="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z5MLLA62HSUM2"
authors="Eloraam,FlowerChild,Hawkye,MALfunction84,Scokeev9,SpaceToad,LexManos,cpw"
description="The backbone of modded Minecraft."
/>
<!-- End Forge -->
<!-- Dependencies -->
<!-- <mod name="=== Dependencies ===" version="1.0"
url="packs/ResonantRiseDev/files/4.x/zone00.zip" file="zone00.zip" md5="76cdb2bad9582d23c1f6f4d868218d6c" download="server"
type="extract" extractto="root"
website="http://resonant-rise.com"
authors="RR Dev Team"
description="Dependency Mods List."
/> -->
<!-- Ends Dependencies -->
<!-- Core Mods -->
<mod name="=== Core ===" version="1.0"
url="packs/ResonantRiseDev/files/4.x/zone00.zip" file="zone00.zip" md5="76cdb2bad9582d23c1f6f4d868218d6c" download="server"
type="extract" extractto="root" colour="rred"
website="http://resonant-rise.com"
authors="RR Dev Team"
description="Core Mod List."
/>
<mod name="Actually Additions"
version="1.9.4-r45" url="packs/ResonantRiseDev/files/4.x/ACTUALLYADDITIONS-1.9.4-R45.jar" file="ACTUALLYADDITIONS-1.9.4-R45.jar" md5="164f9c1c651c3f9630117086de6e874e" download="server"
type="mods"
website="http://github.com/Ellpeck/ActuallyAdditions"
authors="Ellpeck"
description="Do you want Automation? Wireless Transport? Better Machines? A cup o' Coffee? Chests? Better Hoppers? Leaf Blowers? Faster Growth? Plants? Well, Actually Additions has all that and a lot more!"
/>
<mod name="AppleCore" version="1.3.4"
url="packs/ResonantRiseDev/files/4.x/APPLECORE-MC1.9.4-1.3.4.jar" file="APPLECORE-MC1.9.4-1.3.4.jar" md5="3bd6d62c957ac7e99fc5645b8b46ec01" download="server"
type="mods"
website="http://www.curseforge.com/projects/224472/"
authors="squeek502"
description="An API for modifying the food and hunger mechanics of Minecraft"
/>
<mod name="Auto Ore Dictionary Converter"
version="1.9.4-1.0" url="packs/ResonantRiseDev/files/4.x/AUTOOREDICTCONV-1.9.4-1.0.jar" file="AUTOOREDICTCONV-1.9.4-1.0.jar" md5="634ce26a3330b14fa1a24503f478ab9f" download="server"
type="mods"
website="http://www.curseforge.com/projects/232650/"
authors="MattDahEpic"
description="Converts specified ore dictionary items automatically or on keybinding."
/>
<mod name="Baubles"
version="1.9.4-1.2.1.0" url="packs/ResonantRiseDev/files/4.x/BAUBLES-1.9.4-1.2.1.0.jar" file="BAUBLES-1.9.4-1.2.1.0.jar" md5="47ca37ca2019bb4f143a1e9be06911d3" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/2535073-baubles" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/baubles?gameCategorySlug=mc-mods&projectID=227083&cn=Add+special+instructions+to+the+addon+author()&business=leon%40imaginet.co.za&bn=PP-DonationsBF:btn_donateCC_LG.gif:"
authors="Azanor"
description="Adding a touch of bling to Minecraft"
/>
<mod name="BetterBedrockGen"
version="5.0.0" url="packs/ResonantRiseDev/files/4.x/BBG-1.9.4-5.0.0.jar" file="BBG-1.9.4-5.0.0.jar" md5="f9fa3861ef7483c0706d16297472bd1f" download="server"
type="mods"
website="http://www.curseforge.com/projects/223275/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/betterbedrockgen?gameCategorySlug=mc-mods&projectID=223275&cn=Add+special+instructions+to+the+addon+author()&business=tnicholls%40hotmail.co.uk&bn=PP-DonationsBF:btn_don"
authors="gigabit101"
description="Bedrock Is Flat"
/>
<mod name="BD Lib"
version="1.11.0.1" url="packs/ResonantRiseDev/files/4.x/BDLIB-1.11.0.1-MC1.9.4.jar" file="BDLIB-1.11.0.1-MC1.9.4.jar" md5="4b0187538fe41c117d35aeca021170d1" download="server"
type="mods"
website="http://bdew.net/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/bdlib?gameCategorySlug=mc-mods&projectID=70496&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonH"
authors="bdew"
description="A library of generic code for my other mods"
/>
<mod name="Advanced Generators"
version="0.9.20.1" url="packs/ResonantRiseDev/files/4.x/GENERATORS-0.9.20.1-MC1.9.4.jar" file="GENERATORS-0.9.20.1-MC1.9.4.jar" md5="184f9db85c8395eb15d0ee99020c024c" download="server"
type="mods"
website="http://bdew.net/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/advanced-generators?gameCategorySlug=mc-mods&projectID=223622&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donat"
authors="bdew"
description="Freeform Multiblock generators that produce MJ, RF and EU"
/>
<mod name="Pressure Pipes"
version="1.3.1.1" url="packs/ResonantRiseDev/files/4.x/PRESSURE-1.3.1.1-MC1.9.4.jar" file="PRESSURE-1.3.1.1-MC1.9.4.jar" md5="fb9a9bdafcdfc859357ec835ee758e47" download="server"
type="mods"
website="http://bdew.net/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/pressure-pipes?gameCategorySlug=mc-mods&projectID=221214&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donateCC_L"
authors="bdew"
description="Unlimited Fluid Transport"
/>
<mod name="Better Achievements"
version="0.3.0" url="packs/ResonantRiseDev/files/4.x/BETTERACHIEVEMENTS-1.9.4-0.3.0.25.jar" file="BETTERACHIEVEMENTS-1.9.4-0.3.0.25.jar" md5="cd2270f7057dabb7f05d51cc53376cdf" download="server"
type="mods"
website="https://github.com/way2muchnoise/BetterAchievements"
authors="way2muchnoise"
description="An improvement to the Achievementscreen"
/>
<mod name="Biomes O' Plenty"
version="4.1.0" url="packs/ResonantRiseDev/files/4.x/BIOMESOPLENTY-1.9.4-4.1.0.2029-UNIVERSAL.jar" file="BIOMESOPLENTY-1.9.4-4.1.0.2029-UNIVERSAL.jar" md5="5714f3e6e4228aef3ca2d98fb863ac3e" download="server"
type="mods"
website="http://files.minecraftforge.net/maven/com/github/glitchfiend/biomesoplenty/BiomesOPlenty/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/biomes-o-plenty?gameCategorySlug=mc-mods&projectID=220318&cn=Add+special+instructions+to+the+addon+author()&business=forstride%40gmail.com&bn=PP-DonationsBF:btn_donateCC"
authors="Adubbz,Amnet,Cheeserolls,Forstride,ted80"
description="Adds over 75 new biomes, blocks, and more!"
/>
<mod name="Blood Magic: Alchemical Wizardry"
version="1.9.4-2.0.1-44" url="packs/ResonantRiseDev/files/4.x/BLOODMAGIC-1.9.4-2.0.1-44.jar" file="BLOODMAGIC-1.9.4-2.0.1-44.jar" md5="9f5ea15e1bf18fe81f22d49d6737cd67" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/1899223-bloodmagic"
authors="WayofTime"
description="Rituals, spells, and more!"
/>
<mod name="Bookshelf"
version="1.9.4-1.2.3.276" url="packs/ResonantRiseDev/files/4.x/BOOKSHELF-1.9.4-1.2.3.276.jar" file="BOOKSHELF-1.9.4-1.2.3.276.jar" md5="1a569123321fb94ccc9481fc63908c33" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/bookshelf" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/bookshelf?gameCategorySlug=mc-mods&projectID=228525&cn=Add+special+instructions+to+the+addon+author()&business=darklime%40live.ca&bn=PP-DonationsBF:btn_donateCC_LG.gif:N"
authors="darkhax,lclc98"
description="Bookshelf is a core/library mod, which adds new features and tools into the game for other content creators to work with. The primary focus of this project is to make use of the combined strength of the modded community to create wonderful tools that everyone can use."
/>
<mod name="Botania"
version="r1.8-310" url="packs/ResonantRiseDev/files/4.x/BOTANIA-UNOFFICIAL.R1.8-310.jar" file="BOTANIA-UNOFFICIAL.R1.8-310.jar" md5="d8692b864d16c0e9e9201ec729450ec1" download="server"
type="mods"
website="http://www.botaniamod.net"
authors="Vazkii"
description="Botania is a mod that adds nature magic to Minecraft."
/>
<mod name="Chameleon"
version="1.9-2.1.4" url="packs/ResonantRiseDev/files/4.x/CHAMELEON-1.9-2.1.4.jar" file="CHAMELEON-1.9-2.1.4.jar" md5="fe9e6d0c1a546c8bbfaf568cb1aa9cc8" download="server"
type="mods"
website="http://www.jaquadro.com/"
authors="jaquadro"
description="Shared code and render support for mods. Used by jaquadro's mods."
/>
<!-- <mod name="Charset"
version="0.3.0-pre7" url="packs/ResonantRiseDev/files/4.x/Charset-mc1.9.4-0.3.0-pre7-1d7852dd154c2704.jar" file="Charset-mc1.9.4-0.3.0-pre7-1d7852dd154c2704.jar" md5="bb8621ac8535ddc5a42e18b7588ca292" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="A wrench which happens to rotate multiparts."
/> -->
<mod name="Chisels & Bits"
version="10.7" url="packs/ResonantRiseDev/files/4.x/CHISELSANDBITS-10.7.jar" file="CHISELSANDBITS-10.7.jar" md5="c0f93a8a0ed1c9d014999c1219aa91b3" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/chisels-bits" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/chisels-bits?gameCategorySlug=mc-mods&projectID=231095&cn=Add+special+instructions+to+the+addon+author()&business=algorithmx2%40gmail.com&bn=PP-DonationsBF:btn_donateCC_"
authors="AlgorithmX2"
description="a mod about Sculpting, Decorating and Aesthetics"
/>
<mod name="Extra Bit Manipulation"
version="1.9-2.1.2" url="packs/ResonantRiseDev/files/4.x/EXTRABITMANIPULATION-1.9.4-2.1.0.jar" file="EXTRABITMANIPULATION-1.9.4-2.1.0.jar" md5="0da0cb230ef707629ebb82941aef6748" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/extra-bit-manipulation"
authors="Phylogeny"
description="This mod is an addon to the Chisels & Bits mod. It adds a wrench that rotates/mirrors/translates/inverts chiseled blocks, and sculpting wires/spades that remove/add cuboidal/ellipsoidal/cylindrical/conic/pyramidal areas of bits from chiseled/chiselable blocks."
/>
<mod name="Clay WorldGen"
version="1.1.0-1.9.4" url="packs/ResonantRiseDev/files/4.x/CLAYWORLDGEN-1.1.0-1.9.4.jar" file="CLAYWORLDGEN-1.1.0-1.9.4.jar" md5="3b3691ba5fee19420d6e4873ff86c8ef" download="server"
type="mods"
website="http://www.curseforge.com/projects/227276/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/clay-worldgen?gameCategorySlug=mc-mods&projectID=227276&cn=Add+special+instructions+to+the+addon+author()&business=Eivind.Norling%40hotmail.com&bn=PP-DonationsBF:btn_don"
authors="EwyBoy"
description="Adds clay to the natural world gen"
/>
<mod name="CompactStorage"
version="2.1" url="packs/ResonantRiseDev/files/4.x/COMPACTSTORAGE-2.1-1.9.4.jar" file="COMPACTSTORAGE-2.1-1.9.4.jar" md5="59a59360cc0808dd3a1e47195f82e4c1" download="server"
type="mods"
website="http://github.com/Workshop-Development/CompactChests/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/mc-mods/223703-compactstorage&cn=Add+special+instructions+to+the+addon+author()&business=toby.strong1%40hotmail.co.uk&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonHosted&cancel_retur"
authors="tattyseal"
description="Adding new storage solutions to your world!"
/>
<mod name="Cooking for Blockheads"
version="3.0.7" url="packs/ResonantRiseDev/files/4.x/COOKINGFORBLOCKHEADS-MC1.9.4-3.0.7.jar" file="COOKINGFORBLOCKHEADS-MC1.9.4-3.0.7.jar" md5="2d6e61fff15d4970ff012603e15655f8" download="server"
type="mods"
website="http://www.curseforge.com/projects/231484/"
authors="BlayTheNinth"
description="Adds a cooking book and multiblock kitchens that only shows recipes you can make with what you currently have in your inventory."
/>
<mod name="Craft Tweaker"
version="1.9-3.0.9" url="packs/ResonantRiseDev/files/4.x/CRAFTTWEAKER-1.9-3.0.9.jar" file="CRAFTTWEAKER-1.9-3.0.9.jar" md5="2b751d47e6b132572234aec3a267fd34" download="server"
type="mods"
website="http://minetweaker3.powerofbytes.com" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/crafttweaker-customized-minetweaker3?gameCategorySlug=mc-mods&projectID=239197&cn=Add+special+instructions+to+the+addon+author()&business=jluboff8%40gmail.com&bn=PP-Dona"
authors="Stan Hebben"
description="Customize your minecraft experience!"
/>
<mod name="CustomThings"
version="MC1.9.4-0.0.4-51" url="packs/ResonantRiseDev/files/4.x/CUSTOMTHINGS-MC1.9.4-0.0.4-51.jar" file="CUSTOMTHINGS-MC1.9.4-0.0.4-51.jar" md5="f0d3f30bf99515b2ea3cc5e6cfb1f801" download="server"
type="mods"
website="http://ci.tterrag.com"
authors="tterrag"
description="Adding custom items and blocks via JSON files."
/>
<mod name="CXLibrary"
version="1.1.0-1.9.4" url="packs/ResonantRiseDev/files/4.x/CXLIBRARY-1.1.0-1.9.4.jar" file="CXLIBRARY-1.1.0-1.9.4.jar" md5="a50fbe62c54d13d00ee9739137fcbdb9" download="server"
type="mods"
website="http://www.curseforge.com/projects/244023/"
authors="CubeX2"
description="Shared code for my mods."
/>
<mod name="Cyclops Core"
version="1.9.4-0.6.3" url="packs/ResonantRiseDev/files/4.x/CYCLOPSCORE-1.9.4-0.6.3.jar" file="CYCLOPSCORE-1.9.4-0.6.3.jar" md5="1f4f0621856d5017189d19af65ce764a" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/232758-cyclops-core"
authors="rubensworks (aka kroeserr),immortaleeb (aka _EeB_)"
description="Coremod for EvilCraft, Integrated Dynamics and others."
/>
<mod name="Dark Utilities"
version="1.9.4-1.1.2.55" url="packs/ResonantRiseDev/files/4.x/DARKUTILITIES-1.9.4-1.1.2.55.jar" file="DARKUTILITIES-1.9.4-1.1.2.55.jar" md5="27765e4c129db3f175d5553bc0baf436" download="server"
type="mods"
website="http://www.darkhax.net"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/dark-utilities?gameCategorySlug=mc-mods&projectID=242195&cn=Add+special+instructions+to+the+addon+author()&business=darklime%40live.ca&bn=PP-DonationsBF:btn_donateCC_LG."
authors="Darkhax"
description="A mod that adds a bunch of new utilities to the game."
/>
<mod name="DeepResonance"
version="1.9.4-1.2.0beta34" url="packs/ResonantRiseDev/files/4.x/DEEPRESONANCE-1.9.4-1.2.0BETA34.jar" file="DEEPRESONANCE-1.9.4-1.2.0BETA34.jar" md5="7a1342383c9f2ce59120c7742e281a44" download="server"
type="mods"
website="http://www.curseforge.com/projects/233398/"
authors="McJty,Elec332"
description="Power generation based on resonanting crystals"
/>
<mod name="ElecCore | Rendering Library"
version="1.5.292" url="packs/ResonantRiseDev/files/4.x/ELECCORE-1.9.4-1.5.292.jar" file="ELECCORE-1.9.4-1.5.292.jar" md5="e020530de4aeb7316b09b01b7a558434" download="server"
type="mods"
website="http://www.curseforge.com/projects/227391/"
authors="Elec332"
description="Shared code for Forge mods"
/>
<mod name="Enchiridion"
version="1.9.4-3.1.5" url="packs/ResonantRiseDev/files/4.x/ENCHIRIDION-1.9.4-3.1.5.jar" file="ENCHIRIDION-1.9.4-3.1.5.jar" md5="d76431d4bfb9743030f3f098a484f37a" download="server"
type="mods"
website="http://www.curseforge.com/projects/76612/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/enchiridion?gameCategorySlug=mc-mods&projectID=76612&cn=Add+special+instructions+to+the+addon+author()&business=joshjackwildman%40gmail.com&bn=PP-DonationsBF:btn_donateC"
authors="joshie"
description="Books mod for minecraft"
/>
<mod name="Ender Compass"
version="1.2.3.1" url="packs/ResonantRiseDev/files/4.x/ENDERCOMPASS-1.9.X-1.2.3.1.jar" file="ENDERCOMPASS-1.9.X-1.2.3.1.jar" md5="6ccacea6cc9f93790a2a98bb393d67dc" download="server"
type="mods"
website="https://github.com/MrIbby/EnderCompass"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/ender-compass?gameCategorySlug=mc-mods&projectID=223106&cn=Add+special+instructions+to+the+addon+author()&business=bui.gabe%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG"
authors="MrIbby"
description="The ender compass is an item that leads to strongholds."
/>
<mod name="EnderCore"
version="1.9.4-0.4.0.26-alpha" url="packs/ResonantRiseDev/files/4.x/ENDERCORE-1.9.4-0.4.0.26-ALPHA.jar" file="ENDERCORE-1.9.4-0.4.0.26-ALPHA.jar" md5="523176560f35d1478cc3e0674134cb2d" download="server"
type="mods"
website="http://enderio.com"
authors="tterrag,CrazyPants"
description="Library mod used by EnderIO, EnderZoo, and others"
/>
<mod name="Ender IO"
version="1.9.4-3.0.0.43_alpha" url="packs/ResonantRiseDev/files/4.x/ENDERIO-1.9.4-3.0.0.43_ALPHA.jar" file="ENDERIO-1.9.4-3.0.0.43_ALPHA.jar" md5="ac0b6f72831aa45c9a04082e66108e5a" download="server"
type="mods"
website="http://enderio.com"
authors="CrazyPants,tterrag"
description="Compact conduits, painted things and access to your stuff through an eye of ender."
/>
<mod name="Ender Zoo"
version="1.9.4-1.2.2.40" url="packs/ResonantRiseDev/files/4.x/ENDERZOO-1.9.4-1.2.2.40.jar" file="ENDERZOO-1.9.4-1.2.2.40.jar" md5="78d3d2b75617f6ab79e8967ea5e01115" download="server"
type="mods"
website="http://enderio.com"
authors="crazypants"
description="More Mobs"
/>
<!-- <mod name="Extra Utilities 2"
version="1.0.0a" url="packs/ResonantRiseDev/files/4.x/extrautils2-1.9.4-alpha-1.0.0a.jar" file="extrautils2-1.9.4-alpha-1.0.0a.jar" md5="08ab5f861e87bed4edbda5a1ceb27e0e" download="server"
type="mods"
website="http://www.curseforge.com/projects/225561/"
authors="RWTema"
description="A bunch of useful things."
/>-->
<mod name="Fancy Fluid Storage"
version="1.9.4-1.6.0-b19" url="packs/ResonantRiseDev/files/4.x/FANCY FLUID STORAGE-1.9.4-1.6.0-B19.jar" file="FANCY FLUID STORAGE-1.9.4-1.6.0-B19.jar" md5="3898716a82b7169d72633d105ae4b4d9" download="server"
type="mods"
website="http://www.curseforge.com/projects/232683/"
authors="Lordmau5,maxpowa"
description="A simple fluid storage mod that's gonna fancy up your world!"
/>
<mod name="Fast Leaf Decay"
version="MC1.9.4-1.7" url="packs/ResonantRiseDev/files/4.x/FASTLEAFDECAY-MC1.9.4-1.7.jar" file="FASTLEAFDECAY-MC1.9.4-1.7.jar" md5="b9e88bad4bb8c7766f4c787970d817e7" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/fastleafdecay"
authors="Olafski"
description="Increases leaf decay rates."
/>
<mod name="Fluxed Redstone"
version="2.2.1.44" url="packs/ResonantRiseDev/files/4.x/FLUXEDREDSTONE-2.2.1.44.jar" file="FLUXEDREDSTONE-2.2.1.44.jar" md5="2cc689046ac2f12305ea211d8e2401dc" download="server"
type="mods"
website="http://www.curseforge.com/projects/240484/"
authors="modmuss50"
description="RF and Tesla Mulitpart cables!"
/>
<mod name="Forestry"
version="5.0.20.167" url="packs/ResonantRiseDev/files/4.x/FORESTRY_1.9.4-5.0.20.167.jar" file="FORESTRY_1.9.4-5.0.20.167.jar" md5="9d5c0d2ce39ef2e43e0e60757d30998c" download="server"
type="mods"
website="http://forestry.sengir.net/"
authors="SirSengir,mezz"
description="Trees, bees and more."
/>
<mod name="Furnus"
version="1.9.4-1.81" url="packs/ResonantRiseDev/files/4.x/FURNUS-1.9.4-1.81.jar" file="FURNUS-1.9.4-1.81.jar" md5="37cfdd4c3d1469a962f7fb7290b0b8ef" download="server"
type="mods"
website="http://www.curseforge.com/projects/239336/"
authors="MrRiegel"
description="A configurable furnace"
/>
<mod name="Gear Swapper"
version="1.9.4-1.2.6" url="packs/ResonantRiseDev/files/4.x/GEARSWAP-1.9.4-1.2.6.jar" file="GEARSWAP-1.9.4-1.2.6.jar" md5="d67167999a512354dca2e1f635061fad" download="server"
type="mods"
website="http://www.curseforge.com/projects/236610/"
authors="McJty"
description="Handy block to swap your gear"
/>
<mod name="Harvest"
version="1.9.4-1.0.1-6" url="packs/ResonantRiseDev/files/4.x/HARVEST-1.9.4-1.0.1-6.jar" file="HARVEST-1.9.4-1.0.1-6.jar" md5="590a8a64761bf9beba9e5d2957f6291a" download="server"
type="mods"
website="http://tehnut.info/"
authors="TehNut"
description="Right click crop harvesting"
/>
<mod name="HelpFixer"
version="1.3.14" url="packs/ResonantRiseDev/files/4.x/HELPFIXER-1.9.4-1.3.14.jar" file="HELPFIXER-1.9.4-1.3.14.jar" md5="21b897798a2cdcc70d69f903c661bff8" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/223797-helpfixer" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/helpfixer?gameCategorySlug=mc-mods&projectID=223797&cn=Add+special+instructions+to+the+addon+author()&business=matthewprenger%40gmail.com&bn=PP-DonationsBF:btn_donateCC_"
authors="matthewprenger"
description="Fixes the help command from mod derpyness"
/>
<mod name="IndustrialCraft 2"
version="2.5.25-ex19" url="packs/ResonantRiseDev/files/4.x/INDUSTRIALCRAFT-2-2.5.25-EX19.jar" file="INDUSTRIALCRAFT-2-2.5.25-EX19.jar" md5="419fc18103924ff2e5648fd5513423fa" download="server"
type="mods"
website="http://www.industrial-craft.net"
authors="Alblaka,Player,RichardG,Thunderdark,GregoriusT,alexthesax,Drashian,Elementalist,Feanturi,Lurch1985,SirusKing,tahu44, Aroma1997"
description="Industrial age themed expansion for Minecraft."
/>
<mod name="Integrated Dynamics"
version="1.9.4-0.3.10" url="packs/ResonantRiseDev/files/4.x/INTEGRATEDDYNAMICS-1.9.4-0.3.10.jar" file="INTEGRATEDDYNAMICS-1.9.4-0.3.10.jar" md5="1c02fde0dc8e496e36099fe8c6e28635" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/236307-integrated-dynamics"
authors="rubensworks (aka kroeserr)"
description="Take full and automated control of your appliances."
/>
<mod name="Iron Chest"
version="1.9.4-6.0.145.787" url="packs/ResonantRiseDev/files/4.x/IRONCHEST-1.9.4-6.0.145.787.jar" file="IRONCHEST-1.9.4-6.0.145.787.jar" md5="a4fda8640a2a8da920c7b7447597b25c" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/981855-"
authors="cpw"
description="New chests with larger sizes, with in-place upgrade items. The feature chest is the crystal chest, which is transparent - some inventory contents are visible without opening the chest"
/>
<mod name="Just Enough Items"
version="3.6.7.216" url="packs/ResonantRiseDev/files/4.x/JEI_1.9.4-3.6.7.216.jar" file="JEI_1.9.4-3.6.7.216.jar" md5="39ce9ef6c5857ba6cb9a8775cd68c96a" download="server"
type="mods"
website="https://github.com/mezz/JustEnoughItems"
authors="mezz"
description="Simple recipe and item helper."
/>
<mod name="Block Drops"
version="1.9.4-1.0.3" url="packs/ResonantRiseDev/files/4.x/BLOCKDROPS-1.9.4-1.0.3.jar" file="BLOCKDROPS-1.9.4-1.0.3.jar" md5="9fa44157dd8b922d58d3565274b47edf" download="server"
type="mods"
website="http://www.curseforge.com/projects/244181/"
authors="MrRiegel"
description="Block Drops (JEI Addon)"
/>
<mod name="Just Enough Resources" version="0.4.6.36"
url="packs/ResonantRiseDev/files/4.x/JUSTENOUGHRESOURCES-1.9.4-0.4.6.38.jar" file="JUSTENOUGHRESOURCES-1.9.4-0.4.6.38.jar" md5="ea931ecd49e223e783481fef759afed3" download="server"
type="mods"
website="http://www.curseforge.com/projects/240630/"
authors="way2muchnoise"
description="Adds Resources and Mob Drops to JEI"
/>
<mod name="xLib"
version="r1.0.1" url="packs/ResonantRiseDev/files/4.x/XLIB-1.9.4-R1.0.1.jar" file="XLIB-1.9.4-R1.0.1.jar" md5="f747bc9c86ca2e238383f36988d9aa48" download="server"
type="mods"
website="https://github.com/TheXFactor117" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/xlib?gameCategorySlug=mc-mods&projectID=245873&cn=Add+special+instructions+to+the+addon+author()&business=chipsoud%40hotmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gif:No"
authors="TheXFactor117"
description="Required library for TheXFactor117's mods."
/>
<mod name="Levels"
version="r3.0.3" url="packs/ResonantRiseDev/files/4.x/LEVELS-1.9.4-R3.0.3.jar" file="LEVELS-1.9.4-R3.0.3.jar" md5="0ed6ebca483ca8000470519a3f9445b6" download="server"
type="mods"
website="https://github.com/TheXFactor117/Levels" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/levels?gameCategorySlug=mc-mods&projectID=235552&cn=Add+special+instructions+to+the+addon+author()&business=chipsoud%40hotmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gif:"
authors="TheXFactor117"
description="A new, innovative leveling mod, focused around leveling up weapons to gain unique boosts."
/>
<mod name="LunatriusCore"
version="1.1.2.35" url="packs/ResonantRiseDev/files/4.x/LUNATRIUSCORE-1.9.4-1.1.2.35-UNIVERSAL.jar" file="LUNATRIUSCORE-1.9.4-1.1.2.35-UNIVERSAL.jar" md5="b265bd06910aa795f5cb1aaaa17a6532" download="server"
type="mods"
website="http://mc.lunatri.us/"
authors="Lunatrius"
description="A collection of utilities for Lunatrius' mods."
/>
<mod name="Mantle"
version="0.10.2" url="packs/ResonantRiseDev/files/4.x/MANTLE-1.9.4-0.10.2.jar" file="MANTLE-1.9.4-0.10.2.jar" md5="698a71170da5035ee53f8489264598ab" download="server"
type="mods"
website="https://github.com/SlimeKnights/Mantle"
authors="boni,progWML6,Alexbegt"
description="Shared code for Slime Knights mods and others."
/>
<mod name="Tinkers' Construct"
version="1.9.4-2.3.2" url="packs/ResonantRiseDev/files/4.x/TCONSTRUCT-1.9.4-2.3.2.jar" file="TCONSTRUCT-1.9.4-2.3.2.jar" md5="497a48638ca8a69b059ce4a6fb88ed68" download="server"
type="mods"
website="https://github.com/SlimeKnights/TinkersConstruct" donation="https://www.paypal.com/cgi-bin/webscr?hosted_button_id=GKGVLK75MTPUN&item_name=Tinkers+Construct+(from+curseforge.com)&cmd=_s-xclick"
authors="boni,KnightMiner"
description="A little of this, a little of that, a lot of tinkering, and a lot of tools"
/>
<mod name="McJtyLib"
version="1.9.4-1.9.1-SNAPSHOT" url="packs/ResonantRiseDev/files/4.x/MCJTYLIB-1.9.4-1.9.1.jar" file="MCJTYLIB-1.9.4-1.9.1.jar" md5="d7f9705848fc4c6aee069643c25f40e3" download="server"
type="mods"
website="http://www.curseforge.com/projects/233105/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/mcjtylib?gameCategorySlug=mc-mods&projectID=233105&cn=Add+special+instructions+to+the+addon+author()&business=jorrit.tyberghein%40pandora.be&bn=PP-DonationsBF:btn_donate"
authors="McJty"
description="McJtyLib library for RFTools, Deep Resonance, ..."
/>
<mod name="MCMultiPart"
version="1.2.0_72" url="packs/ResonantRiseDev/files/4.x/MCMULTIPART-EXPERIMENTAL-1.2.0_72-UNIVERSAL.jar" file="MCMULTIPART-EXPERIMENTAL-1.2.0_72-UNIVERSAL.jar" md5="ab40d40eaefdaac879d5a840d5fb1f28" download="server"
type="mods"
website="http://mods.curse.com/mc-mods/minecraft/239431-mcmultipart"
description="MCMultiPart is a community effort to make a multipart API that's both easy to use and very powerful."
/>
<mod name="MattDahEpic Core"
version="1.9.4-1.0" url="packs/ResonantRiseDev/files/4.x/MDECORE-1.9.4-1.0.jar" file="MDECORE-1.9.4-1.0.jar" md5="79066717885eb2976a30e0aa5cd5b846" download="server"
type="mods"
website="http://www.curseforge.com/projects/229595/"
authors="MattDahEpic"
description="Base Mod for all MattDahEpic mods."
/>
<mod name="MmmMmmMmmMmm"
version="1.11" url="packs/ResonantRiseDev/files/4.x/MMMMMMMMMMMM-1.11.jar" file="MMMMMMMMMMMM-1.11.jar" md5="7849460650455fc1bb96e6c131320067" download="server"
type="mods"
website="http://www.curseforge.com/projects/225738/"
authors="boni"
description="Provides a test dummy that can be placed in the world. Punch it, kick it, slice it, push it, pop it, twist it,...."
/>
<mod name="Morph-o-Tool"
version="1.0-3" url="packs/ResonantRiseDev/files/4.x/MORPH-O-TOOL-1.0-3.jar" file="MORPH-O-TOOL-1.0-3.jar" md5="6a2c2ecb9344355dbbb84874c4708326" download="server"
type="mods"
website="http://www.vazkii.us"
authors="Vazkii"
description="The wrench to end all wrenches."
/>
<mod name="ModPack Utilities"
version="1.0.1" url="packs/ResonantRiseDev/files/4.x/MPUTILS-1.9.4-1.0.1.jar" file="MPUTILS-1.9.4-1.0.1.jar" md5="7a69cbf9753f6c41b2f09128e81b4dce" download="server"
type="mods"
website="http://minecraft.curseforge.com/members/GenDeathrow/projects" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/mputils?gameCategorySlug=mc-mods&projectID=244940&cn=Add+special+instructions+to+the+addon+author()&business=gendeathrow%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gi"
authors="GenDeathrow,Darkosto"
description="will add various tools for modpack developers"
/>
<mod name="ModPack Basic Tools"
version="1.0.0" url="packs/ResonantRiseDev/files/4.x/MPBASIC-1.9.4-1.0.0.jar" file="MPBASIC-1.9.4-1.0.0.jar" md5="71348919db14f1a10efa7e6f50562fb4" download="server"
type="mods"
website="http://www.curseforge.com/projects/245889/"
authors="GenDeathrow"
description="Adds Change logs, info, and bug reporting tab."
/>
<mod name="NetherPortalFix" version="4.0.1"
url="packs/ResonantRiseDev/files/4.x/NETHERPORTALFIX-MC1.9.4-4.0.1.jar" file="NETHERPORTALFIX-MC1.9.4-4.0.1.jar" md5="1c2dea8eae5594999d56dc4d437d73c6" download="server"
type="mods"
website="http://www.curseforge.com/projects/241160/"
authors="Blay09"
description="Ensures correct destinations when travelling back and forth through Nether Portals in Multiplayer."
/>
<mod name="NoMoreRecipeConflict"
version="0.4" url="packs/ResonantRiseDev/files/4.x/NOMORERECIPECONFLICT-0.4(1.9).jar" file="NOMORERECIPECONFLICT-0.4(1.9).jar" md5="4f10b7c2bb3846fd2ff8262aa096493c" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/1098727-"
authors="stimmedcow,GotoLink"
description="Switch between conflicting recipes"
/>
<mod name="NotEnoughCodecs"
version="0.5" url="packs/ResonantRiseDev/files/4.x/NOTENOUGHCODECS-0.5.jar" file="NOTENOUGHCODECS-0.5.jar" md5="c63af7801d9b5122fd5d508b9ebace7f" download="server"
type="mods"
website="http://openmods.info"
authors="OpenMods,other_boq"
description="Streaming codecs for various formats"
/>
<mod name="Not Enough Wands"
version="1.9.4-1.3.4" url="packs/ResonantRiseDev/files/4.x/NOTENOUGHWANDS-1.9.4-1.3.4.jar" file="NOTENOUGHWANDS-1.9.4-1.3.4.jar" md5="2e42b7c5629c026bc2cfba973bef848a" download="server"
type="mods"
website="http://www.curseforge.com/projects/235595/"
authors="romelo333,McJty"
description="Wands, wands, and more wands"
/>
<mod name="OpenComputers"
version="1.6.0.2-beta.3" url="packs/ResonantRiseDev/files/4.x/OPENCOMPUTERS-MC1.9.4-1.6.0.2-BETA.3.jar" file="OPENCOMPUTERS-MC1.9.4-1.6.0.2-BETA.3.jar" md5="192210b3b8b06df781680f95ae5f72e4" download="server"
type="mods"
website="http://oc.cil.li/"
authors="Florian 'Sangar' Nuecke,Johannes 'Lord Joda' Lohrer,Everyone who contributed to the mod on Github - thank you!"
description="This mod adds modular computers and robots that can be programmed in Lua."
/>
<mod name="Ore Tweaker"
version="1.0.1" url="packs/ResonantRiseDev/files/4.x/ORETWEAKER-1.0.1-1.9.4.jar" file="ORETWEAKER-1.0.1-1.9.4.jar" md5="bb38d45d2ea4c1c05a9202b03be361cb" download="server"
type="mods"
website="http://www.curseforge.com/projects/242436/"
authors="EwyBoy"
description="Allows you to tweak vanilla ore generation"
/>
<mod name="Packing Tape"
version="0.5.1" url="packs/ResonantRiseDev/files/4.x/PACKINGTAPE-1.9.4-0.5.1.jar" file="PACKINGTAPE-1.9.4-0.5.1.jar" md5="6a899d91bfe306c7bffd047ac98d6b8f" download="server"
type="mods"
website="https://github.com/gigaherz/PackingTape" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/packing-tape?gameCategorySlug=mc-mods&projectID=238659&cn=Add+special+instructions+to+the+addon+author()&business=gigaherz%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG."
authors="gigaherz"
description="Adds a simple means to carry thigns with you"
/>
<mod name="Pam's HarvestCraft"
version="1.9.4b" url="packs/ResonantRiseDev/files/4.x/PAMS HARVESTCRAFT 1.9.4B.jar" file="PAMS HARVESTCRAFT 1.9.4B.jar" md5="cdb9c7f777f133c860818bd389646fcb" download="server"
type="mods"
website="http://minecraft.curseforge.com/members/MatrexsVigil/projects" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/pams-harvestcraft?gameCategorySlug=mc-mods&projectID=221857&cn=Add+special+instructions+to+the+addon+author()&business=worldofro%40gmail.com&bn=PP-DonationsBF:btn_donate"
authors="Pamela Collins"
description="Expanding minecraft's food system."
/>
<mod name="Pong" version="1.0.0.1"
url="packs/ResonantRiseDev/files/4.x/PONG-1.9.4-1.0.0.1-UNIVERSAL.jar" file="PONG-1.9.4-1.0.0.1-UNIVERSAL.jar" md5="85a6c2b90aadc27cb3694bf4c167385d" download="server"
type="mods"
website="http://www.curseforge.com/projects/245267/"
authors="modmuss50"
description="Pong shows the actual ping in the player list"
/>
<mod name="Progressive Automation"
version="1.6.46" url="packs/ResonantRiseDev/files/4.x/PROGRESSIVEAUTOMATION-1.9.4-1.6.46.jar" file="PROGRESSIVEAUTOMATION-1.9.4-1.6.46.jar" md5="49bee73b130b59bead273b5510e24164" download="server"
type="mods"
website="https://github.com/Vanhal/ProgressiveAutomation/"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/progressive-automation-early-miner?gameCategorySlug=mc-mods&projectID=220606&cn=Add+special+instructions+to+the+addon+author()&business=obriensh%40gmail.com&bn=PP-Donati"
authors="Vanhal"
description="A mod that adds automation that can be built in the early game and upgraded throughout late game."
/>
<mod name="Psi"
version="r1.0-35" url="packs/ResonantRiseDev/files/4.x/PSI-R1.0-35.jar" file="PSI-R1.0-35.jar" md5="6707bfde9a3b96b2de0730cfd592779c" download="server"
type="mods"
website="http://www.vazkii.us"
authors="Vazkii"
description="Psionic SpellCasting Instruments"
/>
<mod name="QuantumFlux"
version="1.9.4-2.0.7" url="packs/ResonantRiseDev/files/4.x/QUANTUMFLUX-1.9.4-2.0.7.jar" file="QUANTUMFLUX-1.9.4-2.0.7.jar" md5="a894d29e316497d3ec94158bcb7b359b" download="server"
type="mods"
website="http://www.curseforge.com/projects/228609/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/quantumflux?gameCategorySlug=mc-mods&projectID=228609&cn=Add+special+instructions+to+the+addon+author()&business=jotato%40zoho.com&bn=PP-DonationsBF:btn_donateCC_LG.gif:"
authors="Jotato"
description="Wireless Redstone Flux"
/>
<mod name="Quark"
version="beta-28" url="packs/ResonantRiseDev/files/4.x/QUARK-BETA-28.jar" file="QUARK-BETA-28.jar" md5="6e7e6956966757d63be17e7fd749efbd" download="server"
type="mods"
website="http://www.vazkii.us"
authors="Vazkii,wiiv"
description="Small things."
/>
<mod name="Random Utilities"
version="3.1.1" url="packs/ResonantRiseDev/files/4.x/RANDOM UTILITIES-1.9.4-3.1.1.jar" file="RANDOM UTILITIES-1.9.4-3.1.1.jar" md5="7e3e3933f4b6bef3e278e3e171dfbb58" download="server"
type="mods"
website="https://github.com/61352151511/Random-Utilities"
authors="Six-One-Three"
description="Adds miscellaneous useful items."
/>
<mod name="Random Things"
version="3.7.3" url="packs/ResonantRiseDev/files/4.x/RANDOMTHINGS-MC1.9.4-3.7.3.jar" file="RANDOMTHINGS-MC1.9.4-3.7.3.jar" md5="c248f145c132413359cfd815167ec530" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/59816-random-things"
authors="Lumien"
description="Random Things packed into one Mod."
/>
<mod name="RebornCore"
version="2.5.0.34" url="packs/ResonantRiseDev/files/4.x/REBORNCORE-1.9.4-2.5.4.47-UNIVERSAL.jar" file="REBORNCORE-1.9.4-2.5.4.47-UNIVERSAL.jar" md5="8f667a0e0de76cfa53810eb750d64bb3" download="server"
type="mods"
website="https://github.com/TechReborn/RebornCore"
authors="modmuss50,Gigabit101"
description="RebornCore, A core set of classes."
/>
<!--<mod name="TechReborn"
version="1.3.2.120" url="packs/ResonantRiseDev/files/4.x/TechReborn-1.9.4-1.3.2.120-universal.jar" file="TechReborn-1.9.4-1.3.2.120-universal.jar" md5="2a129edda43a3b717b2ef3d9f44abab1" download="server"
type="mods"
website="https://github.com/TechReborn/TechReborn"
authors="modmuss50,Gigabit101,tntrololol,joflashstudios,Prospector"
description="TechReborn, The Gregtech revival you dream about on a cool mid summer's eve."
/>-->
<mod name="Refined Storage"
version="0.7.16" url="packs/ResonantRiseDev/files/4.x/REFINEDSTORAGE-0.7.16.jar" file="REFINEDSTORAGE-0.7.16.jar" md5="82d6f0d4de45ca7ae08d0e40657f2ac4" download="server"
type="mods"
website="http://www.curseforge.com/projects/243076/"
authors="Refined Storage contributors"
description="A Minecraft mod all about storage."
/>
<mod name="Reliquary"
version="1.9.4-1.3.2.372" url="packs/ResonantRiseDev/files/4.x/RELIQUARY-1.9.4-1.3.2.372.jar" file="RELIQUARY-1.9.4-1.3.2.372.jar" md5="3702e8089c505454a16ec9ea214db0be" download="server"
type="mods"
website="http://www.curseforge.com/projects/241319/"
authors="x3n0ph0b3,TheMike,P3pp3rF1y"
description="Two words: magical swag. Oh, and a gun."
/>
<mod name="RFTools"
version="1.9.4-4.64" url="packs/ResonantRiseDev/files/4.x/RFTOOLS-1.9.4-4.64.jar" file="RFTOOLS-1.9.4-4.64.jar" md5="d84295aa2ae918686ca0abbd242f7df7" download="server"
type="mods"
website="http://www.curseforge.com/projects/224641/"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/rftools?gameCategorySlug=mc-mods&projectID=224641&cn=Add+special+instructions+to+the+addon+author()&business=jorrit.tyberghein%40pandora.be&bn=PP-DonationsBF:btn_donateC"
authors="McJty"
description="RedFlux tools"
/>
<mod name="RFTools Dimensions"
version="1.9.4-4.30beta42" url="packs/ResonantRiseDev/files/4.x/RFTOOLSDIM-1.9.4-4.30BETA42.jar" file="RFTOOLSDIM-1.9.4-4.30BETA42.jar" md5="a553f495fd77ab881fb047bd2c5a7824" download="server"
type="mods"
website="http://www.curseforge.com/projects/240950/"
authors="McJty"
description="RFTools Dimensions Addon"
/>
<mod name="Roguelike Dungeons"
version="1.5.2" url="packs/ResonantRiseDev/files/4.x/ROGUELIKEDUNGEONS-1.9.4-1.5.2.jar" file="ROGUELIKEDUNGEONS-1.9.4-1.5.2.jar" md5="7c61db8090d6d2ca8b755a21973982dc" download="server"
type="mods"
website="http://github.com/Greymerk/minecraft-roguelike"
authors="Greymerk"
description="Adds randomized dungeons to the world"
/>
<mod name="Roots"
version="0.005" url="packs/ResonantRiseDev/files/4.x/ROOTS-0.005.jar" file="ROOTS-0.005.jar" md5="af02e19c0e608afe4d83d7535430b735" download="server"
type="mods"
website="http://www.curseforge.com/projects/246183/"
authors="Elucent,Leordas"
description="Druidic Magic Mod"
/>
<mod name="Realistic Terrain Generation"
version="2.0.0-alpha.5" url="packs/ResonantRiseDev/files/4.x/RTG-1.9.4-2.0.0-ALPHA.5.jar" file="RTG-1.9.4-2.0.0-ALPHA.5.jar" md5="d9ba7f23d818569cbe351c73b98d469b" download="server"
type="mods"
website="https://github.com/Team-RTG/1.9-Realistic-Terrain-Generation"
authors="WhichOnesPink"
description="Adds a new world type which generates realistic terrain for Overworld biomes."
/>
<mod name="SensorCraft"
version="0.3.0-1.9.4" url="packs/ResonantRiseDev/files/4.x/SENSORCRAFT-0.3.0-1.9.4.jar" file="SENSORCRAFT-0.3.0-1.9.4.jar" md5="fff3e0c4b8a3fe55f86ed967be313abe" download="server"
type="mods"
website="http://www.curseforge.com/projects/242786/" donation="https://www.paypal.com/cgi-bin/webscr?hosted_button_id=ZJTN82XD5EZQU&item_name=SensorCraft+(from+curseforge.com)&cmd=_s-xclick"
authors="CubeX2"
description="Modular mobile and non-mobile sensors "
/>
<mod name="ShadowMC"
version="1.9.4-3.3.9" url="packs/ResonantRiseDev/files/4.x/SHADOWMC-1.9.4-3.3.9.jar" file="SHADOWMC-1.9.4-3.3.9.jar" md5="96408b81af9cf29df7b269c97be89977" download="server"
type="mods"
website="http://github.com/shadowfacts/ShadowMC"
authors="Shadowfacts"
description="A library mod required for all my other mods."
/>
<mod name="ShetiPhian-Core"
version="1.9.4-3.2.6" url="packs/ResonantRiseDev/files/4.x/SHETIPHIANCORE-1.9.4-3.2.6.jar" file="SHETIPHIANCORE-1.9.4-3.2.6.jar" md5="5902ce47a0198efff892db7ddb74a684" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/p/core.html"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/shetiphiancore?gameCategorySlug=mc-mods&projectID=71738&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_L"
authors="ShetiPhian"
description="Core set of files needed by ShetiPhians mods"
/>
<mod name="EnderTanks"
version="1.9.4-1.3.5" url="packs/ResonantRiseDev/files/4.x/ENDERTANKS-1.9.4-1.3.5.jar" file="ENDERTANKS-1.9.4-1.3.5.jar" md5="bf49169db2f0805d2c02caedac68d91a" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/endertanks?gameCategorySlug=mc-mods&projectID=59613&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gi"
authors="ShetiPhian"
description="Store liquids inside a subspace pocket located in the End."
/>
<mod name="Multi-Beds"
version="1.9.4-1.1.4" url="packs/ResonantRiseDev/files/4.x/MULTIBEDS-1.9.4-1.1.4.jar" file="MULTIBEDS-1.9.4-1.1.4.jar" md5="887ad9da2abb55192cba9723cefd17e4" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/multibeds?gameCategorySlug=mc-mods&projectID=244858&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gi"
authors="ShetiPhian"
description="272 bed spreads to choose from"
/>
<mod name="Multi-Storage"
version="1.9.0-1.1.0" url="packs/ResonantRiseDev/files/4.x/MULTISTORAGE-1.9.4-1.1.2.jar" file="MULTISTORAGE-1.9.4-1.1.2.jar" md5="1f8c45fa739d3ff7320002094579310a" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/multistorage?gameCategorySlug=mc-mods&projectID=244864&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG"
authors="ShetiPhian"
description="Vaults, Hidden Chests, and Stacking Chests"
/>
<mod name="Platforms"
version="1.9.4-1.1.2" url="packs/ResonantRiseDev/files/4.x/PLATFORMS-1.9.4-1.1.2.jar" file="PLATFORMS-1.9.4-1.1.2.jar" md5="614339ea5d04ed17bc86c122bbba5e51" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/p/platforms.html" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/platforms?gameCategorySlug=mc-mods&projectID=244786&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gi"
authors="ShetiPhian"
description=" - "
/>
<mod name="Terraqueous"
version="1.9.4-1.1.4" url="packs/ResonantRiseDev/files/4.x/TERRAQUEOUS-1.9.4-1.1.4.jar" file="TERRAQUEOUS-1.9.4-1.1.4.jar" md5="dd617bb4523ad06134f38b17c6868b98" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/p/terraqueous.html"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/terraqueous?gameCategorySlug=mc-mods&projectID=244870&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG."
authors="ShetiPhian"
description="Fruit Trees/Vines/Plants, Cloud Blocks, Flowers, Doodads, Pergola, Tools"
/>
<mod name="Signals" version="0.1.2"
url="packs/ResonantRiseDev/files/4.x/SIGNALS-1.9.4-0.1.2-UNIVERSAL.jar" file="SIGNALS-1.9.4-0.1.2-UNIVERSAL.jar" md5="86aac08bfcc28994c4c1ae18d86c6368" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/signals?gameCategorySlug=mc-mods&projectID=245824"
description="This mod adds Signals to the game, which behave similar to OpenTTD signaling (which is based on how train signals in real life behave)."
/>
<mod name="Simply Conveyors" version="1.0.3"
url="packs/ResonantRiseDev/files/4.x/SIMPLYCONVEYORS-1.0.3.jar" file="SIMPLYCONVEYORS-1.0.3.jar" md5="dfb59b286bd0281463c29cca479dd484" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/simply-conveyors"
description="Simply Conveyors is a mod in which you use conveyors to both move items around, and use them as player transport. It has multiple types of conveyors to fit your needs."
/>
<mod name="Sleeping Bag"
version="1.9.4-1.2.1" url="packs/ResonantRiseDev/files/4.x/SLEEPINGBAG-1.9.4-1.2.1.jar" file="SLEEPINGBAG-1.9.4-1.2.1.jar" md5="2adb9659694f89f6f6ef5f665af84080" download="server"
type="mods"
website="https://github.com/shadowfacts/SleepingBag"
authors="shadowfacts"
description="A sleeping bag"
/>
<mod name="SpongeForge"
version="1.9.4-1968-5.0.0-BETA-1489" url="packs/ResonantRiseDev/files/4.x/spongeforge-1.9.4-1968-5.0.0-BETA-1489.jar" file="spongeforge-1.9.4-1968-5.0.0-BETA-1489.jar" md5="63da98130c5d5adec9f28e184d139bee" download="server"
type="mods" recommended="yes" server="yes" client="no"
website="https://www.spongepowered.org"
authors="SpongePowered"
description="The Sponge API Implementation"
/>
<mod name="Stackie"
version="1.6.0.42" url="packs/ResonantRiseDev/files/4.x/STACKIE-1.9.4-1.6.0.42-UNIVERSAL.jar" file="STACKIE-1.9.4-1.6.0.42-UNIVERSAL.jar" md5="a125aa7c13b310f893ae41045ac57db8" download="server"
type="mods"
website="http://mc.lunatri.us/"
authors="Lunatrius"
description="Stack entities into groups to decrease lag."
/>
<mod name="Storage Drawers"
version="1.9-3.1.7" url="packs/ResonantRiseDev/files/4.x/STORAGEDRAWERS-1.9-3.1.7.jar" file="STORAGEDRAWERS-1.9-3.1.7.jar" md5="060af99ea82afeb0bb1e9bf3a46cee4c" download="server"
type="mods"
website="http://www.jaquadro.com/"
authors="jaquadro"
description="Multi-drawer storage blocks for quick storage and retrieval."
/>
<mod name="Substratum"
version="1.4.0.1" url="packs/ResonantRiseDev/files/4.x/SUBSTRATUM-1.9.4-1.4.0.1.jar" file="SUBSTRATUM-1.9.4-1.4.0.1.jar" md5="9e6f28d3a2693dc68bda54f9d7963e06" download="server"
type="mods"
website="https://github.com/EXTER7/Substratum"
authors="EXTER"
description="Base resources and crafting materials."
/>
<mod name="TESLA"
version="1.9.4-1.1.0.24" url="packs/ResonantRiseDev/files/4.x/TESLA-1.9.4-1.1.0.24.jar" file="TESLA-1.9.4-1.1.0.24.jar" md5="ade364ddf8b3292003c8a8e8ede7081d" download="server"
type="mods"
website="http://www.curseforge.com/projects/244651/"
authors="Darkhax"
description="TBA"
/>
<mod name="The One Probe"
version="1.9.4-1.0.10" url="packs/ResonantRiseDev/files/4.x/THEONEPROBE-1.9.4-1.0.10.jar" file="THEONEPROBE-1.9.4-1.0.10.jar" md5="95c66db732accf730f623b129d2653df" download="server"
type="mods"
website="http://www.curseforge.com/projects/245211/"
authors="McJty"
description="A Probe to rule them all!"
/>
<mod name="ThutCore" version="3.1.2"
url="packs/ResonantRiseDev/files/4.x/THUTCORE-1.9.4-3.1.2.jar" file="THUTCORE-1.9.4-3.1.2.jar" md5="5b53b9d8ee126c03b89d0daba0c7d27f" download="server"
type="mods"
website="http://www.curseforge.com/projects/224428/" donation="https://www.paypal.com/cgi-bin/webscr?hosted_button_id=4QYS6APL7PLKA&item_name=ThutCore+(from+curseforge.com)&cmd=_s-xclick"
authors="patnevis"
description="API used by Thut's Mods"
/>
<mod name="Thut's Elevators" version="3.0.2"
url="packs/ResonantRiseDev/files/4.x/THUTTECH-3.0.2.jar" file="THUTTECH-3.0.2.jar" md5="0e0256393acb64aec8d9f4a78ff5192f" download="server"
type="mods"
website="http://www.curseforge.com/projects/224375/" donation="https://www.paypal.com/cgi-bin/webscr?hosted_button_id=4QYS6APL7PLKA&item_name=Thut%27s+Elevators+(from+curseforge.com)&cmd=_s-xclick"
authors="patnevis"
description="Adds elevators to minecraft"
/>
<mod name="TIS-3D"
version="0.9.0.5" url="packs/ResonantRiseDev/files/4.x/TIS-3D-MC1.9.4-0.9.0.5.jar" file="TIS-3D-MC1.9.4-0.9.0.5.jar" md5="0e64b49e4b777c5871a6183fb8c173dd" download="server"
type="mods"
website="http://www.curseforge.com/projects/238603/" authors="Sangar"
description="TIS-100 inspired low-tech computing for Minecraft."
/>
<mod name="Totemic"
version="1.9.4-0.7.5" url="packs/ResonantRiseDev/files/4.x/TOTEMIC-1.9.4-0.7.5.jar" file="TOTEMIC-1.9.4-0.7.5.jar" md5="a424907ef06787f8de6f3aac61e12dba" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/2367915-"
authors="Pokefenn,ljfa"
description="Totem Poles? Totem Poles!"
/>
<mod name="TrashSlot"
version="5.0.7" url="packs/ResonantRiseDev/files/4.x/TRASHSLOT-MC1.9.4-5.0.7.jar" file="TRASHSLOT-MC1.9.4-5.0.7.jar" md5="0749a6fdcbab7fd415a3796a47813a25" download="server"
type="mods"
website="http://www.curseforge.com/projects/235577/"
authors="BlayTheNinth"
description="Adds a trash slot to the inventory screen that allows deletion of unwanted items."
/>
<mod name="Waila"
version="1.7.0-B3" url="packs/ResonantRiseDev/files/4.x/WAILA-1.7.0-B3_1.9.4.jar" file="WAILA-1.7.0-B3_1.9.4.jar" md5="ad5733255dac0b85b9bbe38749638060" download="server"
type="mods"
website="http://www.curseforge.com/projects/73488/" authors="ProfMobius"
description="Waila (What Am I Looking At) is a UI improvement mod aimed at providing block information directly ingame."
/>
<mod name="WAILA-features" version="0.3.1.11"
url="packs/ResonantRiseDev/files/4.x/WAILA-FEATURES-1.9.4-0.3.1.11.jar" file="WAILA-FEATURES-1.9.4-0.3.1.11.jar" md5="73724a63da4a74e590b2e9b32fc570d6" download="server"
type="mods"
website="http://www.curseforge.com/projects/229625/"
authors="way2muchnoise"