forked from katsuo/Technic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodlibrary.yml
1750 lines (1750 loc) · 56.8 KB
/
modlibrary.yml
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
mods:
basemods:
name: "Jar modification Mods"
description: "Rest of Mods not yet seperated out"
installtype: "zip"
modtype: "content"
link: ""
versions:
hackslashmine-v0.6.4.6:
hackslashmine-v0.6.4.5:
hackslashmine-v0.6.4.4:
hackslashmine-v0.6.4.3:
hackslashmine-v0.6.4.2:
hackslashmine-v0.6.4.1:
hackslashmine-v0.6.4:
hackslashmine-v0.6.0:
hackslashmine-v0.5.3:
hackslashmine-v0.5.2:
hackslashmine-v0.4:
spotlight-forge-v1.0.0:
vanilla-v1.4.5:
vanilla-v1.4.4:
vanilla-v1.3.2:
vanilla-v1.3.1:
vanilla-v1.2.5:
vanilla-v1.2.3:
yogbox-v1.2.5:
yogbox-v1.2.1:
yogbox-v1.2.0:
yogbox-v1.1.6:
yogbox-v1.1.5:
yogbox-v1.1.2:
yogbox-v1.1.1:
yogbox-v1.1.0:
vanilla-v1.1:
technic-no-optifine:
technic-v7.5.2:
technic-v7.5.0:
technic-v7.3.7:
technic-v7.3.5:
technic-v7.3.0:
technic-v7.2.6:
technic-v7.2.1:
technic-v7.2.0:
technic-v7.1.0:
technic-v7.0.1:
technic-v7.0.0:
technic-v6.1.1:
technic-v6.1.0:
technic-v6.0.7:
technic-v6.0.6:
technic-v6.0.5:
technic-v6.0.3:
technic-v6.0.2:
technic-v6.0.1:
technic-v6.0.0:
tekkit-v3.1.3:
tekkit-v3.1.2:
tekkit-v3.1.1:
tekkit-v3.1.0:
tekkit-v3.0.5:
tekkit-v3.0.3:
tekkit-v3.0.2:
tekkit-v3.0.1:
tekkit-v3.0.0-smooth:
tekkit-v3.0.0:
tekkit-v2.0:
tekkitlite-v0.6.0:
tekkitlite-v0.5.9:
tekkitlite-v0.5.8:
tekkitlite-v0.5.7:
tekkitlite-v0.5.6:
tekkitlite-v0.5.4:
tekkitlite-v0.5.3:
tekkitlite-v0.5.2:
tekkitlite-v0.5.1:
tekkitlite-v0.5.0:
voltz-v1.1.0:
voltz-v1.0.13:
voltz-v1.0.12:
voltz-v1.0.10:
voltz-v1.0.9:
voltz-v1.0.8:
voltz-v1.0.7:
voltz-v1.0.6:
voltz-v1.0.0:
voltz-v0.0.1:
v1.3.0:
v1.2.1y:
v1.2.0-S:
v1.2.0:
v5.0.5:
tekkit-v2.0.0:
voxelmodpack-v9.1.2:
voxelmodpack-v9.0.0:
voxelmodpack-v8.4.0:
voxelmodpack-v8.3.0:
voxelmodpack-v8.2.0:
voxelmodpack-v8.1.0:
adventureitems:
name: "Adventure Items"
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
airships:
name: "Airships"
installtype: "zip"
versions:
v1.2.3:
v1.2.5:
armorstand:
name: "Armor stand mod"
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
balkonsweaponmod:
name: "Balkons Weapon Mod"
author: "BalkondeurAlpha"
description: "Throw a spear in a zombie's head! Cut a skeleton in half with your brand new halberd! Shoot some slimes in pieces with an old musket! And more!"
link: "http://www.minecraftforum.net/topic/211517-146forge-balkons-weaponmod-v110/"
installtype: "zip"
versions:
v1.10_1.4.6:
v1.10:
v8.6:
v8.5:
v8.4:
v8.3:
v8.2:
v8.1:
battletowers:
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
betterdungeons:
installtype: "zip"
versions:
v0.932.1:
v0.931:
v0.925:
v0.923:
v0.922:
v0.921:
v0.92:
v0.91:
bspkrscore:
name: "bspkrs Core"
author: "bspkrs"
description: "The core dependency mod for all bspkrs mods"
installtype: "zip"
versions:
v1.01:
buildcraft:
name: "BuildCraft"
author: "SpaceToad/Krapht/SirSengir"
description: "Extending Minecraft with pipes, auto-crafting, quarries, engines and much more!"
installtype: "zip"
modtype: "content"
link: "http://www.mod-buildcraft.com/"
versions:
v3.4.3:
v3.4.2:
v3.4.0:
v3.3.0:
v3.2.2:
v3.2.0:
v3.1.8:
v3.1.5:
v3.1.4:
v3.1.4pre:
v3.1.3:
dependencies:
baseforge: 1.3.1
v3.1.2:
dependencies:
baseforge: 1.2.4
v2.2.14:
v2.2.13:
v2.2.12:
dependencies:
baseforge: 1.2.4
v2.2.11:
dependencies:
baseforge: 1.2.4
v2.2.7:
md5: "03fd974285584b306af080a5e5e6edc7"
dependencies:
baseforge: 1.2.3
buildcraft-additionalpipes:
name: "Buildcraft Additional Pipes"
installtype: "zip"
versions:
v2.1.3.u42:
v2.1.3.u40:
v2.1.3.u38:
v2.1.3.u36:
v2.1.3.u35:
v2.1.3.u28.b2:
v3.1.0:
v3.0.10:
v3.0.1:
v32.3:
v34:
v2.1.3:
buildcraft-additionalpower:
installtype: "zip"
versions:
v0.1.1:
buildcraft-logisticspipes:
name: "Buildcraft Logistic Pipes"
installtype: "zip"
versions:
v0.7.0.90:
v0.7.0.89:
v0.7.0.84:
v0.7.0.81:
v0.7.0.75:
v0.6.9.51:
v0.6.9.32:
v0.6.1.pre19:
v0.7.0.pre2:
v0.6.0.pre2:
v0.6.0.pre1:
v0.2.5b:
v0.2.4a:
v0.2.2a:
v0.2.1a:
v0.2.0b:
v0.1.0a:
v0.1.2a:
v0.1.3a:
v0.1.8a:
buildcraft-objects:
name: "BuildCraft Objects"
installtype: "zip"
versions:
v0.9.4.65:
v100:
v85:
v84:
v56:
dependencies:
buildcraft: v2.2.7
v63:
caruins:
name: "CARuins"
installtype: "zip"
versions:
v2.3.0:
ccsensors:
name: "ccSensors"
author: "yoskaz01"
description: "ccSensors collects information from machines and blocks from around the minecraft world. Those readings can be viewed on the sensor terminal or (and even better) be used in Computercraft lua programs for anything..."
link: "http://www.computercraft.info/forums2/index.php?/topic/126-mc-125-cc-133-ccsensors-smpssp/"
installtype: "zip"
versions:
v017pr2:
v017pr1:
chargingbench:
name: "IC2 Charging Bench"
author: "Drashian"
description: "A bench with multiple charging slots so you can charge all of your items at once. Apply redstone power to the bench to reverse the way it functions."
installtype: "zip"
modtype: "content"
link: "http://forum.industrial-craft.net/index.php?page=Thread&threadID=929"
versions:
v1.95b:
v1.81-1:
v1.71-1:
v1.70-1:
v1.64-1:
v1.43:
dependencies:
ic2: v1.43
chickenchunks:
name: "ChickenChunks"
installtype: "zip"
versions:
v1.3.1.0:
v1.2.1.1:
v1.2.1.0:
codechickencore:
name: "CodeChickenCore"
author: "chicken_bones"
description: "Required by Chicken Bones' Mods"
link: "http://www.minecraftforum.net/topic/909223-145146-smp-chickenbones-mods/"
installtype: "zip"
versions:
v0.7.3:
v0.7.1.0:
v0.7.0.2:
v0.7.0.1:
v0.7.0.0:
v0.6.16:
v0.6.15:
v0.6.14:
v0.6.10:
v0.6.6.1:
v0.5.5:
v0.5.3:
v0.5.2:
v0.4.2:
v0.4.4:
v0.5.0:
cofhcore:
name: "CoFH Core"
author: "KingLemmingCoFH"
description: "Thermal Expansion, at its core, is a 'tech' mod - it's a mod of what ifs. For example, what if you could turn water into ice or snow with a machine? Or how about a machine that could combine lava and water however you choose? What if there were a wool that didn't burn? Or, what if you could set up advanced yet extremely compact production chains that didn't require redstone engines or complex pipe routing? If any of that interests you, then you may want to check this out."
link: "http://www.minecraftforum.net/topic/1297506-"
wiki: "http://thermalexpansion.wikispaces.com/"
installtype: "zip"
versions:
v1.4.7.3:
v1.4.7.0:
computercraft:
name: "ComputerCraft"
author: "dan200"
description: "Add's Lua based computers to the game"
installtype: "zip"
modtype: "content"
link: "http://www.computercraft.info/"
versions:
v1.5:
v1.481:
v1.47:
v1.46:
v1.41:
v1.4:
v1.33:
v1.31:
v1.3:
v1.21:
v1.2:
craftguide:
name: "CraftGuide"
description: "Quick access to a list of every crafting recipe in the game!"
installtype: "zip"
versions:
v1.4.4:
v1.4.1:
dependencies:
minecraft: 1.1
v1.4.2:
v1.4.3:
craftingtableii:
name: "Crafting Table II"
description: "Inspired by Terraria crafting, Crafting Table II displays everything you can currently craft with the items in your inventory. How much of each item the recipe uses is displayed on the left as well as a description of that item, click on the item and the Crafting Table II will automatically craft it for you without you ever having to remember recipes. As you add and remove items from your inventory the list of available items updates. Works with any recipe, including mods."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/856538-100-crafting-table-ii-v15-171211/"
optional: true
versions:
v1.5:
v1.6.2:
v1.6.2-1.2.3:
craftingtableiii:
name: "Crafting Table III"
description: "Inspired by Terraria crafting, Crafting Table III displays everything you can currently craft with the items in your inventory. How much of each item the recipe uses is displayed on the left as well as a description of that item, click on the item and the Crafting Table III will automatically craft it for you without you ever having to remember recipes. As you add and remove items from your inventory the list of available items updates. Works with any recipe, including mods."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/1189975-b18mc125-craftingtableiii-bug-fixs-more-mod-support/"
optional: true
versions:
v1.8:
crystalwing:
name: "Crystal Wing"
installtype: "zip"
versions:
v1.2.5.a:
custommobspawner:
name: "Custom Mob Spawner"
installtype: "zip"
versions:
v1.9.0:
v1.7.1:
v1.7:
v1.5.1:
v1.4.3:
v1.4.1:
v1.4:
customport:
name: "Custom LAN Ports"
author: "CptHunter"
description: "This mod allows for you to enter a custom port, IP, and MOTD! I did not stop there. I saw the opportunity to add more features, and I did. Now you can edit almost everything you could edit on a normal, vanilla, server! I also added some basic options to get your LAN feeling a bit more like a real server. It's like starting a server, but with your own Single Player worlds, and with your own Single Player mods."
link: "http://www.minecraftforum.net/topic/1572017-"
installtype: "zip"
versions:
v2.0:
dimanchor:
name: "Dimensional Anchors"
author: "immibis"
description: "This is a block that loads chunks. There is a limit on the number of chunks each non-op player can load in SMP, and each chunk loader can load an adjustable area."
link: "http://www.minecraftforum.net/topic/1001131-146-immibiss-mods-smp-tubestuff-5204-core-5203-da-5204/"
installtype: "zip"
versions:
v52.1.9:
v52.1.7:
v52.1.6:
v52.1.1:
v52.0.6:
v51.0.4:
v51.0.2:
v3.2:
dimensionaldoors:
name: "Dimensional Doors"
author: "StevenRS11"
description: "This mod adds doors to Minecraft that open up to individual pocket Dimensions. In addition to these doors, it also adds several other features that help the player manipulate reality, forming rifts, linking dimensions, and even sending him to places they really should have never been."
link: "http://www.minecraftforum.net/topic/1650007-"
installtype: "zip"
versions:
v1.2.1.12:
doorfix:
name: "Door Fix"
installtype: "zip"
versions:
v2.1:
ee:
name: "Equivalent Exchange"
description: ""
installtype: "zip"
modtype: "content"
versions:
v5.7.3:
v6.18:
v6.22:
ee2:
name: "Equivalent Exchange 2"
author: "Pahimar"
description: "The Equivalent Exchange mod is based around alchemy. It adds a number of extremely powerful end-game items that require large quantities of diamond to make, and large quantities of glowstone to power. It also grants the ability to easily condense materials into more valuable forms, up to diamonds and even beyond. Most of its recipes are based around the Philosopher's Stone, which you will need in order to access much of the new content."
link: "http://www.minecraftforum.net/topic/1106178-125-equivalent-exchange-2-v1467/"
wiki: "http://equivalentexchange.wikispaces.com/"
installtype: "zip"
modtype: "content"
versions:
v1.4.6.7:
v1.4.6.6:
v1.4.6.5:
v1.4.6.1:
v1.4.5.1:
v1.4.4.0:
v1.4.3.1:
v1.4.0.3:
v1.38.1:
v1.38:
v1.1:
ee3:
name: "Equivalent Exchange 3"
description: ""
installtype: "zip"
versions:
vpre1f:
vpre1e:
vpre1d:
vpre1:
elementalcreepers:
name: "Elemental Creepers"
installtype: "zip"
versions:
v2.3r2_mp:
v2.0:
v1.9:
enderchest:
name: "EnderChest"
author: "Ecu/chicken_bones"
description: "EnderStorage is a mod that offers a means to store your items in The END, causing them to be everywhere and nowhere at the same time. All EnderStorage makes use of the magic of colors to link storage with its little piece of The END. Any EnderStorage with the same color code share inventory (even across dimensions). Currently there are two types of storage, EnderChest and EnderPouch."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/909223-100181-chickenbones-mods/"
versions:
v1.0.2:
v1.0.1v2:
v1.0.1:
v1.0:
enderstorage:
name: "EnderStorage"
author: "Ecu/chicken_bones"
description: "EnderStorage is a mod that offers a means to store your items in The END, causing them to be everywhere and nowhere at the same time. All EnderStorage makes use of the magic of colors to link storage with its little piece of The END. Any EnderStorage with the same color code share inventory (even across dimensions). Currently there are two types of storage, EnderChest and EnderPouch."
link: "http://www.minecraftforum.net/topic/1160665-closed-quiddity-modding/"
installtype: "zip"
versions:
v1.4.1.2:
v1.3.1.1:
v1.3.1.0:
v1.3.0.4:
v1.3.0.3:
v1.2.1.6:
v1.2.1.3:
v1.2.1:
v1.1.3:
v1.1.1:
v1.1.0:
factorization:
name: "Factorization"
installtype: "zip"
versions:
v0.7.10:
v0.7.7:
flatbedrock:
name: "Flat Bedrock"
author: "Power Crystals"
description: "Changes the bedrock layer to be flat"
link: "http://www.minecraftforum.net/topic/1629898-"
installtype: "zip"
versions:
v1.0.3:
floatingruins:
name: "Floating Ruins"
installtype: "zip"
versions:
v1.0.0:
floodgate:
name: "Floodgates"
installtype: "zip"
versions:
v1.1:
forestry:
name: "Forestry"
desctiption: ""
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/700588-100smp-forestry-for-minecraft-tree-farms-automated/"
versions:
v1.4.0.4:
v1.4.0.3:
v1.4.0.2:
v1.4.0.1:
v1.3.4.4:
v1.3.4.3:
v1.3.4.0:
v1.3.2.1:
v1.2.9.15:
v1.2.6.6:
v1.2.6.4:
v1.2.6.3:
v1.3.0.3:
ic2:
name: "Industrial Craft 2"
author: "Alblaka & IC2 Team"
description: "This is it. IC2, the future of IC. While playing it, you will feel right at home again, rediscovering most of the stuff known from IC. However, once you get your machines running, you will quickly notice how smooth and well-designed everything works now. Wiring is easier, batterys aren't as twosided (on/off) anymore, new cables, rubber stuff, new machines, EVERYTHING was added. Create obstacle courses of Metal Poles and Rubber-Sheets, explore the Nether with an Electrical Jetpack or blow up whole landscapes at once by using the Dynamite-O-Mote. Or discover the much more complex mechanisms of Nuclear Engineering, blow up your hut or burn your hands. Or grab the rusty ol Composite Vest, and start hunting Creepers with the new, allmighty NanoSaber."
installtype: "zip"
modtype: "content"
link: "http://www.industrial-craft.net/"
versions:
v1.115.229:
v1.115.220:
v1.115.218:
v1.115.208:
v1.112.199:
v1.112.170:
v1.110.137:
v1.109.113:
v1.108.71:
v1.103:
v1.97:
v1.95b:
v1.95:
v1.81:
v1.71:
v1.70:
v1.43:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
v1.42:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
v1.64:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.2
ic2-advancedmachines:
name: "IC2 Advanced Machines"
author: "AtomicStryker"
description: "Adds several new blocks to IC2 to make your systems more effecient."
installtype: "zip"
modtype: "content"
link: "http://forum.industrial-craft.net/index.php?page=Thread&threadID=4907"
versions:
v4.7:
v4.6:
v4.5:
v4.4:
v4.1:
v4.0:
v3.6e:
v3.1:
v3.2_beta2:
ic2-advancedpowermanagement:
name: "IC2 Advanced Power Management"
description: ""
installtype: "zip"
versions:
v1.1.55:
v1.1.40:
v1.1.30:
ic2-advancedrepulsionsystems:
name: "IC2 Advanced Repulsion Systems"
description: ""
installtype: "zip"
versions:
v52.0.6:
v52.0.5:
v52.0.4:
v51.0.3:
v51.0.1:
v50.2.2:
v50.2.1:
ic2-compactsolars:
name: "IC2 Compact Solars"
author: "cpw"
description: "Combines large amounts of solar panels into single blocks turning your solar arrays into effecient small scale power houses."
link: "http://forum.industrial-craft.net/index.php?page=Thread&threadID=4827"
installtype: "zip"
versions:
v3.2.3.23:
v3.2.0.21:
v3.1.2.18:
v3.1.2.17:
v3.1.1.16:
v2.3.2.10:
v2.2.0.5:
v1.2:
ic2-nuclearcontrol:
name: "IC2 Nuclear Control"
author: "Shedar"
description: "Nuclear Control addon allows you to build efficient monitoring and notification system for your nuclear reactor. Also you can use Howler Alarm and Industrial Alarm in any case when you want industrial-style notification/alarming system."
link: "http://forum.industrial-craft.net/index.php?page=Thread&threadID=5915"
installtype: "zip"
versions:
v1.4.6:
v1.4.5:
v1.4.4b:
v1.4.3:
v1.4.1:
v1.1.10b:
v1.1.9b:
v1.1.8:
v1.1.6:
v1.1.3:
ic2-transformers:
name: "IC2 Transformers"
installtype: "zip"
versions:
v1.7b:
v1.7:
v1.6:
v1.3:
v1.2:
immibiscore:
name: "Immibis Core"
author: "immibis"
description: "Core mod required for immibis mods"
link: "http://www.minecraftforum.net/topic/1001131-146-immibiss-mods-smp-tubestuff-5208-core-5220-da-5207-infinitubes-021/"
installtype: "zip"
versions:
v52.4.5:
v52.4.4:
v52.4.0:
v52.2.4:
v52.2.1:
v52.1.0:
v51.0.5:
v51.0.2:
v50.2.3:
v50.2.1:
v49.2.0:
v49.1.1:
v49.1.0:
v49.0.7:
v49.0.4:
v48.2.1:
immibismicroblocks:
name: "Immibis Microblocks"
author: "immibis"
description: "Core mod required for immibis mods"
link: "http://www.minecraftforum.net/topic/1001131-146-immibiss-mods-smp-tubestuff-5208-core-5220-da-5207-infinitubes-021/"
installtype: "zip"
versions:
v52.1.1:
ingameinfo:
name: "In Game Info"
installtype: "zip"
versions:
v1.2.5.d:
inventorytweaks:
name: "Inventory Tweaks"
author: "Jimeowan"
description: "Tweaks your inventory handling to be more intuitive. Break your iron sword in the heat of battle and don't have time to replace it? No worries, if you have another one handy in your inventory it will automatically be moved into the last slot it was used! Works with all stacked items!"
installtype: "zip"
modtype: "tweak"
link: "http://www.minecraftforum.net/topic/323444-inventory-tweaks-141b-mar-27/"
optional: true
versions:
v1.50:
v1.49:
v1.46:
v1.45:
v1.44:
v1.41b:
v1.40b:
v1.38:
v1.36:
v1.35:
dependencies:
baseModloader: 1.0.0
v1.34b:
dependencies:
baseModloader: 1.0.0
v1.37c:
ironchests:
name: "Iron Chests"
author: "cpw"
description: "IronChests adds several new chests to the game. One for each type of metal. You can even upgrade them!"
link: "http://www.minecraftforum.net/topic/981855-"
installtype: "zip"
versions:
v5.1.0.260:
v5.1.0.249:
v5.0.1.246:
v4.5.4.217:
v4.5.2.213:
v4.5.1.199:
v4.4.0.186:
v4.2.2.138:
v3.8.0.40:
v3.4.2.28:
v3.3.1.21:
v2.5:
lectern:
name: "Lectern"
installtype: "zip"
versions:
ssp-1.2.5:
macros:
name: "Macro/Keybind Mod"
installtype: "zip"
versions:
0.9.3.r2_for_1.3.2:
0.9.2_for_1.3.2:
0.8.7_for_1.2.5:
0.8.6_for_1.2.4:
0.8.5_for_1.2.3:
matmos:
name: "MAtmos"
author: "Hurricaaane"
description: "MAtmos is a sound atmosphere generator. When you play on any server or in singleplayer, it looks at your surroundings and generates natural noises as a soundscape, such as birds in the forest or rumbling near a lava lake or wind gusts on a hilltop, which fills out the perpetual silence of Minecraft."
link: "http://www.minecraftforum.net/topic/379925-"
installtype: "zip"
modtype: "audio"
versions:
v20:
v12:
v11:
r10:
r8:
millenaire:
name: "Millenaire"
installtype: "zip"
versions:
v2.7.4:
v2.5.9:
v2.5.4:
v2.5.2:
v2.4.6:
v2.4.4:
v2.4.2:
v2.3.2:
v2.3.1:
v2.2.8:
v2.2.5:
v2.2.4:
v2.2.1:
v2.2:
v2.1.6:
v2.1.5:
v2.1.2:
v2.1:
minaptics:
name: "Minaptics"
installtype: "zip"
versions:
1.2.3r12vbox:
1.2.4r13vbox:
minions:
name: "Minecraft Minions"
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
mffs:
name: "Modular Force Field System"
author: "Immibis"
description: "Create and manipulate force fields to your will!"
link: "http://forum.industrial-craft.net/index.php?page=Thread&postID=65261"
installtype: "zip"
versions:
v7:
v6:
v5:
v3:
mfr:
name: "MineFactory Reloaded"
author: "Powercrystals"
description: "A way to automatically farm plants and animals, as well some new rail tracks! With this mod you can set up a completely automated farm for any of these things that requires no real work aside from collecting the harvests and reloading the planter, without incredibly complex and unwieldy water/piston solutions. And you can milk cows to death or otherwise run livestock farms if you need those resources. Oh and it has conveyor belts too."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/554413-100smp-pcs-mods-minefactory-reloaded-power-converters-and-more-updated-dec-19th/"
versions:
v2.2.0.120:
v2.1.3:
v2.1.2:
v2.0.8:
v2.0.7:
v2.0.4:
v2.0.1:
v2.0.0:
v2.0.0rc5:
v1.4.1_01:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.2
v1.4.0p2:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
buildcraft: 2.2.11
v1.4.0p:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
buildcraft: 2.2.11
v1.4.0:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
buildcraft: 2.2.7
minecolony:
names: "Minecolony"
installtype: "zip"
versions:
v19yb:
v17yb:
v17.1yb:
minecraftconsole:
name: "Minecraft Console"
description: "The Minecraft console mod adds a new GUI console to Minecraft which makes viewing messages a whole lot easier!"
installtype: "zip"
modtype: "tweak"
link: "http://www.minecraftforum.net/topic/680231-181-minecraft-console-v10/"
optional: true
versions:
v1.2:
dependencies:
baseModloader: 1.1.0
v1.1:
dependencies:
baseModloader: 1.0.0
mocreatures:
installtype: "zip"
name: "Mo Creatures"
versions:
v4.2.1:
v4.1.2:
v4.1.0:
v3.7.1:
v3.6.2:
v3.3.0:
v3.2.2:
v3.1.0:
morefuel:
installtype: "zip"
name: "More Fuel"
versions:
v1.7:
mystcraft:
name: "Mystcraft"
installtype: "zip"
versions:
v0.10.0.00:
v0.9.5.00:
v0.9.4.05:
v0.9.4.00:
nei:
name: "Not Enough Items"
author: "chicken_bones"
description: "NEI is a successor to both Too Many Items and Recipe Book. It arose around the same time as Craft Guide when Alexandria and a few others on the IRC suggested that I merge both Too Many Items and Recipe Book to remove their greatest flaws, ironically too many items, or in the case of recipe book, too many recipies. Too Many Items was great, but the one thing it lacked was an easy way to search and sort your items. When you had a mod like Red Power coming along with 10000 items both TMI and Recipe Book were racking up the pages. Even if you don't want to use NEI for cheating in items, you will likely feel right at home with the Recipe component of the mod."
link: "http://www.minecraftforum.net/topic/909223-145146-smp-chickenbones-mods/"
installtype: "zip"
versions:
v1.4.7.0:
v1.4.5.1:
v1.4.5.0:
v1.4.4.0:
v1.4.3.4:
v1.4.3.3:
v1.4.2.7:
v1.4.2:
v1.4.1.2:
v1.4.1.1:
v1.2.2.2:
v1.2.2:
v1.2.0:
v1.2.1:
nei-plugins:
name: "Not Enough Items"
installtype: "zip"
versions:
v1.0.4.5:
v1.0.4.1:
v1.0.3.6:
v1.0.3.5:
v1.0.2.2:
nei-buildcraft:
name: "NEI Buildcraft Plugin"
installtype: "zip"
versions:
v1.2.0.8:
nei-ic2:
name: "NEI IC2 Plugin"
installtype: "zip"
versions:
burn-v1.0:
nei-rc:
name: "NEI Railcraft Plugin"
installtype: "zip"
versions:
v1.5.0.10:
v1.2.2.3:
v1.2.2.2:
nei-redpower:
name: "NEI RedPower Plugin"
installtype: "zip"
versions:
v1.4.3.1:
v1.4.3:
v1.2.2.3:
nei-thaumcraft:
name: "NEI Thaumcraft Plugin"
installtype: "zip"
versions:
v1.0.6.15:
nei-thermalexpansion:
name: "NEI Thermal Expansion Plugin"
installtype: "zip"
versions:
v2.1.7:
v2.1.6:
netherores:
name: "Nether Ores"
author: "Powercrystals"
description: "This is a fairly basic mod. It makes the eight 'ores' - coal, diamond, gold, iron, lapis, redstone, sopper and tin - spawn in the nether so that you have a reason to go there."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/1629898-"
versions:
v2.0.6.29:
v2.0.5:
v2.0.4:
v2.0.3:
v2.0.2:
v1.4.6:
v1.4.2:
v1.2.1:
v1.1.2:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.2
v1.1.0:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
omniwrench:
name: "CoFH OmniWrench"
installtype: "zip"
versions:
pr1:
omnitools:
name: "CoFH OmniTools"
author: "KingLemmingCoFH"
description: "This is an implementation of something that I know a lot of people have wanted, a wrench that works on many different mods: BuildCraft (and Forestry, RailCraft, Thermal Expansion), IndustrialCraft, and all Universal Electricity mods as well."
link: "http://www.minecraftforum.net/topic/1378315-"
installtype: "zip"
versions:
v3.0.4:
v3.0.2:
v3.0.1:
v2.2.5:
v2.2.3:
openccsensors:
name: "OpenCCSensors"
author: "Cloudy and Mikee"
description: "OpenCCSensors is an open source add-on mod for ComputerCraft which gives your computers the ability to retrieve information about the area around them."