Advertisement
Les3soleills

Script MineTweaker V6

Dec 9th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.69 KB | None | 0 0
  1. #------------------------
  2. #EnderIO Sword
  3. #------------------------
  4. <enderio:item_dark_steel_sword>.displayName = "Dark Sword";
  5.  
  6. #------------------------
  7. #Aether Slabs
  8. #------------------------
  9. <aether_legacy:skyroot_slab>.displayName = "Skyroot Slab";
  10. <aether_legacy:carved_slab>.displayName = "Carved Stone Slab";
  11. <aether_legacy:angelic_slab>.displayName = "Angelic Stone Slab";
  12. <aether_legacy:hellfire_slab>.displayName = "Hellfire Stone Slab";
  13. <aether_legacy:holystone_slab>.displayName = "Holystone Slab";
  14. <aether_legacy:mossy_holystone_slab>.displayName = "Mossy Holystone Slab";
  15. <aether_legacy:aerogel_slab>.displayName = "Aerogel Slab";
  16. <aether_legacy:holystone_brick_slab>.displayName = "Holystone Bricks Slab";
  17.  
  18. #------------------------
  19. #Useless Items
  20. #------------------------
  21. recipes.remove(<botania:slimebottle>);
  22. <botania:slimebottle>.addTooltip(format.darkRed("Disabled due of conflicts with other mods."));
  23.  
  24. #------------------------
  25. #Plates Fix
  26. #------------------------
  27. mods.unidict.removalByKind.get("Crafting").remove("plate");
  28.  
  29. #------------------------
  30. #Trapdoors
  31. #------------------------
  32. recipes.remove(<quark:spruce_trapdoor>);
  33. mods.jei.JEI.hide(<quark:spruce_trapdoor>);
  34. <quark:spruce_trapdoor>.addTooltip(format.darkRed("Disabled due of conflicts with other mods."));
  35. recipes.remove(<malisisdoors:trapdoor_spruce>);
  36. recipes.addShaped(<malisisdoors:trapdoor_spruce>*6,
  37. [
  38. [null,null,null],
  39. [<minecraft:planks:1>,<minecraft:planks:1>,<minecraft:planks:1>],
  40. [<minecraft:planks:1>,<minecraft:planks:1>,<minecraft:planks:1>]
  41. ]
  42. );
  43.  
  44. recipes.remove(<quark:birch_trapdoor>);
  45. mods.jei.JEI.hide(<quark:birch_trapdoor>);
  46. <quark:birch_trapdoor>.addTooltip(format.darkRed("Disabled due of conflicts with other mods."));
  47. recipes.remove(<malisisdoors:trapdoor_birch>);
  48. recipes.addShaped(<malisisdoors:trapdoor_birch>*6,
  49. [
  50. [null,null,null],
  51. [<minecraft:planks:2>,<minecraft:planks:2>,<minecraft:planks:2>],
  52. [<minecraft:planks:2>,<minecraft:planks:2>,<minecraft:planks:2>]
  53. ]
  54. );
  55.  
  56. recipes.remove(<quark:jungle_trapdoor>);
  57. mods.jei.JEI.hide(<quark:jungle_trapdoor>);
  58. <quark:jungle_trapdoor>.addTooltip(format.darkRed("Disabled due of conflicts with other mods."));
  59. recipes.remove(<malisisdoors:trapdoor_jungle>);
  60. recipes.addShaped(<malisisdoors:trapdoor_jungle>*6,
  61. [
  62. [null,null,null],
  63. [<minecraft:planks:3>,<minecraft:planks:3>,<minecraft:planks:3>],
  64. [<minecraft:planks:3>,<minecraft:planks:3>,<minecraft:planks:3>]
  65. ]
  66. );
  67.  
  68. recipes.remove(<quark:acacia_trapdoor>);
  69. mods.jei.JEI.hide(<quark:acacia_trapdoor>);
  70. <quark:acacia_trapdoor>.addTooltip(format.darkRed("Disabled due of conflicts with other mods."));
  71. recipes.remove(<malisisdoors:trapdoor_acacia>);
  72. recipes.addShaped(<malisisdoors:trapdoor_acacia>*6,
  73. [
  74. [null,null,null],
  75. [<minecraft:planks:4>,<minecraft:planks:4>,<minecraft:planks:4>],
  76. [<minecraft:planks:4>,<minecraft:planks:4>,<minecraft:planks:4>]
  77. ]
  78. );
  79.  
  80. recipes.remove(<quark:dark_oak_trapdoor>);
  81. mods.jei.JEI.hide(<quark:dark_oak_trapdoor>);
  82. <quark:dark_oak_trapdoor>.addTooltip(format.darkRed("Disabled due of conflicts with other mods."));
  83. recipes.remove(<malisisdoors:trapdoor_dark_oak>);
  84. recipes.addShaped(<malisisdoors:trapdoor_dark_oak>*6,
  85. [
  86. [null,null,null],
  87. [<minecraft:planks:5>,<minecraft:planks:5>,<minecraft:planks:5>],
  88. [<minecraft:planks:5>,<minecraft:planks:5>,<minecraft:planks:5>]
  89. ]
  90. );
  91.  
  92. recipes.remove(<minecraft:iron_trapdoor>);
  93. recipes.addShaped(<minecraft:iron_trapdoor>*4,
  94. [
  95. [<minecraft:iron_ingot>,<minecraft:iron_ingot>,null],
  96. [<minecraft:iron_ingot>,<minecraft:iron_ingot>,null],
  97. [null,null,null]
  98. ]
  99. );
  100.  
  101. recipes.remove(<enderio:block_dark_steel_trapdoor>);
  102. recipes.addShaped(<enderio:block_dark_steel_trapdoor>*4,
  103. [
  104. [<enderio:item_alloy_ingot:6>,<enderio:item_alloy_ingot:6>,null],
  105. [<enderio:item_alloy_ingot:6>,<enderio:item_alloy_ingot:6>,null],
  106. [null,null,null]
  107. ]
  108. );
  109.  
  110. recipes.remove(<aether_legacy:zanite_trapdoor>);
  111. recipes.addShaped(<aether_legacy:zanite_trapdoor>*4,
  112. [
  113. [<aether_legacy:zanite_gemstone>,<aether_legacy:zanite_gemstone>,null],
  114. [<aether_legacy:zanite_gemstone>,<aether_legacy:zanite_gemstone>,null],
  115. [null,null,null]
  116. ]
  117. );
  118.  
  119. recipes.remove(<malisisdoors:sliding_trapdoor>);
  120. recipes.addShaped(<malisisdoors:sliding_trapdoor>*4,
  121. [
  122. [null,null,null],
  123. [<minecraft:gold_ingot>,<minecraft:iron_ingot>,<minecraft:iron_ingot>],
  124. [<minecraft:gold_ingot>,<minecraft:iron_ingot>,<minecraft:iron_ingot>]
  125. ]
  126. );
  127.  
  128. recipes.remove(<aether_legacy:skyroot_trapdoor>);
  129. recipes.addShaped(<aether_legacy:skyroot_trapdoor>*6,
  130. [
  131. [null,null,null],
  132. [<aether_legacy:skyroot_plank>,<aether_legacy:skyroot_plank>,<aether_legacy:skyroot_plank>],
  133. [<aether_legacy:skyroot_plank>,<aether_legacy:skyroot_plank>,<aether_legacy:skyroot_plank>]
  134. ]
  135. );
  136.  
  137. #------------------------
  138. #Charcoal
  139. #------------------------
  140. recipes.remove(<thermalfoundation:storage_resource>);
  141. recipes.remove(<tcomplement:storage>);
  142. recipes.remove(<forestry:charcoal>);
  143. recipes.remove(<chisel:block_charcoal2:1>);
  144.  
  145. #------------------------
  146. #Sickles
  147. #------------------------
  148. recipes.remove(<extrautils2:sickle_wood>);
  149. mods.jei.JEI.hide(<extrautils2:sickle_wood>);
  150.  
  151. recipes.remove(<extrautils2:sickle_stone>);
  152. mods.jei.JEI.hide(<extrautils2:sickle_stone>);
  153.  
  154. recipes.remove(<extrautils2:sickle_iron>);
  155. mods.jei.JEI.hide(<extrautils2:sickle_iron>);
  156.  
  157. recipes.remove(<extrautils2:sickle_gold>);
  158. mods.jei.JEI.hide(<extrautils2:sickle_gold>);
  159.  
  160. recipes.remove(<extrautils2:sickle_diamond>);
  161. mods.jei.JEI.hide(<extrautils2:sickle_diamond>);
  162.  
  163. recipes.remove(<projectred-exploration:wooden_sickle>);
  164. mods.jei.JEI.hide(<projectred-exploration:wooden_sickle>);
  165.  
  166. recipes.remove(<projectred-exploration:stone_sickle>);
  167. mods.jei.JEI.hide(<projectred-exploration:stone_sickle>);
  168.  
  169. recipes.remove(<projectred-exploration:iron_sickle>);
  170. mods.jei.JEI.hide(<projectred-exploration:iron_sickle>);
  171.  
  172. recipes.remove(<projectred-exploration:golden_sickle>);
  173. mods.jei.JEI.hide(<projectred-exploration:golden_sickle>);
  174.  
  175. recipes.remove(<projectred-exploration:ruby_sickle>);
  176. mods.jei.JEI.hide(<projectred-exploration:ruby_sickle>);
  177.  
  178. recipes.remove(<projectred-exploration:sapphire_sickle>);
  179. mods.jei.JEI.hide(<projectred-exploration:sapphire_sickle>);
  180.  
  181. recipes.remove(<projectred-exploration:peridot_sickle>);
  182. mods.jei.JEI.hide(<projectred-exploration:peridot_sickle>);
  183.  
  184. recipes.remove(<projectred-exploration:diamond_sickle>);
  185. mods.jei.JEI.hide(<projectred-exploration:diamond_sickle>);
  186.  
  187. #------------------------
  188. #Items removed due to bugs
  189. #------------------------
  190. recipes.remove(<actuallyadditions:item_bag>);
  191. <actuallyadditions:item_bag>.addTooltip(format.darkRed("Disabled due to duplications bugs."));
  192.  
  193. recipes.remove(<extrautils2:bagofholding>);
  194. <extrautils2:bagofholding>.addTooltip(format.darkRed("Disabled due to duplications bugs."));
  195.  
  196. recipes.remove(<botania:enderhand>);
  197. <Botania:enderhand>.addTooltip(format.darkRed("Disabled due to exploits bugs."));
  198.  
  199. recipes.remove(<twilightforest:uncrafting_table>);
  200. <twilightforest:uncrafting_table>.addTooltip(format.darkRed("Disabled due to exploits bugs."));
  201.  
  202. #------------------------
  203. #Remove IC2 ChunkLoaders
  204. #------------------------
  205. recipes.remove(<ic2:te:82>);
  206. <ic2:te:82>.addTooltip(format.darkRed("Chunk Loaders disabled."));
  207.  
  208. #------------------------
  209. #Remove EU2 ChunkLoaders
  210. #------------------------
  211. recipes.remove(<extrautils2:chunkloader>);
  212. <extrautils2:chunkloader>.addTooltip(format.darkRed("Chunk Loaders disabled."));
  213.  
  214. #------------------------
  215. #Barley Seeds fix
  216. #------------------------
  217. recipes.remove(<harvestcraft:barleyitem>);
  218. recipes.addShapeless(<harvestcraft:barleyseeditem> * 2,[<harvestcraft:barleyitem>, <harvestcraft:barleyitem>]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement