Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.67 KB | None | 0 0
  1. # v1.02
  2. # removed Greggic Additions items
  3. #
  4. # v1.01
  5. # fixed wrong copper wire in Raw Basic Chip
  6.  
  7. import crafttweaker.item.IItemStack as IItemStack;
  8. import mods.jei.JEI.removeAndHide as rh;
  9. print("--- loading Logipipes.zs ---");
  10.  
  11. #Remove and Hide items that has no use
  12. rh(<logisticspipes:power_provider_mj>);
  13. rh(<logisticspipes:module_crafter_mk2>);
  14. rh(<logisticspipes:module_crafter_mk3>);
  15. rh(<logisticspipes:upgrade_logic_controller>);
  16. rh(<logisticspipes:hud_glasses>);
  17. rh(<logisticspipes:parts>);
  18. rh(<logisticspipes:parts:1>);
  19. rh(<logisticspipes:parts:2>);
  20. rh(<logisticspipes:parts:3>);
  21. rh(<logisticspipes:soldering_station>);
  22. rh(<logisticspipes:broken_item>);
  23. rh(<logisticspipes:upgrade_power_supplier_mj>);
  24. rh(<logisticspipes:upgrade_cc_remote_control>);
  25. rh(<logisticspipes:pipe_provider_mk2>);
  26. rh(<logisticspipes:pipe_provider_mk2>);
  27. rh(<logisticspipes:pipe_crafting_mk3>);
  28. rh(<logisticspipes:power_provider_rf>);
  29. rh(<logisticspipes:power_provider_eu>);
  30. rh(<logisticspipes:module_extractor_mk2>);
  31. rh(<logisticspipes:module_extractor_advanced_mk2>);
  32. rh(<logisticspipes:module_extractor_mk3>);
  33. rh(<logisticspipes:module_extractor_advanced_mk3>);
  34. rh(<logisticspipes:module_provider_mk2>);
  35. rh(<logisticspipes:module_quick_sort_cc>);
  36. rh(<logisticspipes:module_item_sink_cc>);
  37. rh(<logisticspipes:upgrade_power_transportation>);
  38. rh(<logisticspipes:upgrade_power_supplier_rf>);
  39. rh(<logisticspipes:upgrade_power_supplier_eu_lv>);
  40. rh(<logisticspipes:upgrade_power_supplier_eu_mv>);
  41. rh(<logisticspipes:upgrade_power_supplier_eu_hv>);
  42. rh(<logisticspipes:upgrade_power_supplier_eu_ev>);
  43. rh(<logisticspipes:pipe_crafting_mk2>);
  44. rh(<logisticspipes:frame>);
  45.  
  46.  
  47. #Hide only
  48. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:1>);
  49. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:2>);
  50. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:3>);
  51. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:4>);
  52. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:5>);
  53. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:6>);
  54. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:7>);
  55. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:8>);
  56. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:9>);
  57. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:10>);
  58. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:11>);
  59. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:12>);
  60. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:13>);
  61. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:14>);
  62. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:15>);
  63. #mods.jei.JEI.hide(<logisticspipes:remote_orderer:16>);
  64.  
  65. #Tooltips
  66. <logisticspipes:crafting_table>.addTooltip("Used for autocrafting with Logistics");
  67. <logisticspipes:crafting_table_fuzzy>.addTooltip("Used for oredict autocrafting with Logistics");
  68. <logisticspipes:pipe_request_table>.addTooltip("This is your Logistics Crafting Terminal");
  69.  
  70. #FPGA Chip
  71. recipes.remove(<logisticspipes:chip_fpga_raw>);
  72. recipes.addShapedMirrored("Raw FPGA",
  73. <logisticspipes:chip_fpga_raw> *16, [
  74. [<ore:dustSilicon>, <ore:foilGold>, <ore:dustSilicon>],
  75. [<ore:wireGtSingleRedAlloy>, <ore:gemDiamond>, <ore:wireGtSingleRedAlloy>],
  76. [<ore:dustSilicon>, <ore:foilGold>, <ore:dustSilicon>]]);
  77.  
  78. #Basic Chip
  79. recipes.remove(<logisticspipes:chip_basic_raw>);
  80. recipes.addShapedMirrored("Raw Basic Chip",
  81. <logisticspipes:chip_basic_raw> *16, [
  82. [<ore:wireGtSingleCopper>, <ore:dustRedstone>, <ore:wireGtSingleCopper>],
  83. [<ore:dustRedstone>, <ore:dustSilicon>, <ore:dustRedstone>],
  84. [<ore:wireGtSingleCopper>, <ore:dustRedstone>, <ore:wireGtSingleCopper>]]);
  85.  
  86. #Advanced Chip
  87. recipes.remove(<logisticspipes:chip_advanced_raw>);
  88. recipes.addShapedMirrored("Raw Advanced Chip",
  89. <logisticspipes:chip_advanced_raw>, [
  90. [<ore:nuggetDiamond>, <ore:nuggetDiamond>, <ore:nuggetDiamond>],
  91. [<ore:nuggetDiamond>, <logisticspipes:chip_basic_raw>, <ore:nuggetDiamond>],
  92. [<ore:nuggetDiamond>, <ore:nuggetDiamond>, <ore:nuggetDiamond>]]);
  93.  
  94. # Tweaks
  95. recipes.remove(<logisticspipes:power_junction>);
  96. recipes.addShapedMirrored("Logistics Power Junction",
  97. <logisticspipes:power_junction>, [
  98. [null, <ore:circuitBasic>, null],
  99. [<ore:plateRedAlloy>, <gregtech:machine:501>, <ore:plateRedAlloy>],
  100. [<ore:cableGtSingleTin>, <ore:plateRedAlloy>, <ore:cableGtSingleTin>]]);
  101.  
  102. recipes.remove(<logisticspipes:program_compiler>);
  103. recipes.addShapedMirrored("Logistics Program Compiler",
  104. <logisticspipes:program_compiler>, [
  105. [null, <logisticspipes:disk>, null],
  106. [<ore:gemLapis>, <gregtech:machine:501>, <ore:gemLapis>],
  107. [<ore:cableGtSingleTin>, <ore:plateRedAlloy>, <ore:cableGtSingleTin>]]);
  108.  
  109. recipes.remove(<logisticspipes:crafting_table>);
  110. recipes.addShapedMirrored("Logistics Crafting Table",
  111. <logisticspipes:crafting_table> *4, [
  112. [null, <ore:circuitBasic>, null],
  113. [null, <gregtech:machine:501>, null],
  114. [<logisticspipes:pipe_basic>, <extrautils2:analogcrafter>, <logisticspipes:pipe_basic>]]);
  115.  
  116. recipes.remove(<logisticspipes:crafting_table_fuzzy>);
  117. recipes.addShapeless("Logistics Fuzzy Crafting Table",
  118. <logisticspipes:crafting_table_fuzzy>, [<ore:plateRedAlloy>, <logisticspipes:crafting_table>]);
  119.  
  120. recipes.remove(<logisticspipes:pipe_transport_basic>);
  121. recipes.addShapedMirrored("Unrouted Transport Pipe",
  122. <logisticspipes:pipe_transport_basic> *8, [
  123. [<ore:plateWroughtIron>, <ore:itemConduitBinder>, <ore:plateWroughtIron>],
  124. [<ore:itemConduitBinder>, <ore:blockGlass>, <ore:itemConduitBinder>],
  125. [<ore:plateWroughtIron>, <ore:itemConduitBinder>, <ore:plateWroughtIron>]]);
  126.  
  127. recipes.remove(<logisticspipes:pipe_request_table>);
  128. recipes.addShapedMirrored("Logistics Request Table",
  129. <logisticspipes:pipe_request_table>, [
  130. [<ore:circuitBasic>, <extrautils2:analogcrafter>, <ore:circuitBasic>],
  131. [<logisticspipes:pipe_request_mk2>, <gregtech:machine:501>, <logisticspipes:pipe_crafting>],
  132. [<scannable:module_blank>, <scannable:module_blank>, <scannable:module_blank>]]);
  133.  
  134. recipes.remove(<logisticspipes:security_station>);
  135. recipes.addShapedMirrored("Logistics Security Station",
  136. <logisticspipes:security_station>, [
  137. [null, <storagedrawers:personal_key>, null],
  138. [<ore:plateRedAlloy>, <gregtech:machine:501>, <ore:plateRedAlloy>],
  139. [<logisticspipes:chip_advanced>, <ore:plateRedAlloy>, <logisticspipes:chip_advanced>]]);
  140.  
  141. recipes.remove(<logisticspipes:statistics_table>);
  142. recipes.addShapedMirrored("Logistics Statistics Table",
  143. <logisticspipes:statistics_table>, [
  144. [null, <scannable:module_blank>, null],
  145. [<ore:plateRedAlloy>, <gregtech:machine:501>, <ore:plateRedAlloy>],
  146. [<logisticspipes:chip_advanced>, <ore:plateRedAlloy>, <logisticspipes:chip_advanced>]]);
  147.  
  148.  
  149. print("--- Logipipes.zs initialized ---");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement