TheVoos

Modern Industrialization - Main

Aug 5th, 2025
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. Every tick do
  2. Input fe:: from Interface
  3. Output fe:: to Compressor, Wiremill, Polarizer, Alloy_Smelter, Bender, Unpacker,
  4. Macerator, Mixer, Cutting, Centrifuge
  5. End
  6.  
  7. Every 20 ticks do
  8. Input emerald from Interface
  9. Output retain 20 to each Trader top side
  10. Forget
  11. Input from Trader bottom side
  12. Output to Controller
  13. End
  14.  
  15. --Boilder (Steam)
  16. Every 20 ticks do
  17. Input coal from Interface
  18. Output retain 2 to each Boilder
  19. Forget
  20. Input fluid::water from Interface
  21. Output fluid:: to Boilder
  22. Forget
  23. Input fluid::steam from Boilder
  24. Output fluid:: to Interface
  25. End
  26.  
  27. --Alloy Smelter
  28. Every 20 ticks do
  29. Input *ingot* from Interface
  30. Output to Alloy_Smelter
  31. Forget
  32. Input from Alloy_Smelter
  33. Output to Controller
  34. End
  35.  
  36. --Compressor
  37. Every 20 ticks do
  38. Input *ingot*, diamond, emerald from Interface, Controller
  39. Output to Compressor
  40. Forget
  41. Input from Compressor
  42. Output to Controller
  43. End
  44.  
  45. --Wiremill
  46. Every 20 ticks do
  47. Input *plate*, *wire* from Controller
  48. Output to Wiremill
  49. Forget
  50. Input from Wiremill
  51. Output to Controller
  52. End
  53.  
  54. --Polarizer
  55. Every 20 ticks do
  56. Input cupronickel_wire from Controller
  57. Output to Polarizer
  58. Forget
  59. Input from Polarizer
  60. Output to Controller
  61. End
  62.  
  63. --Bending Machine
  64. Every 20 ticks do
  65. Input *plate*, *rod* from Controller
  66. Output to Bender
  67. Forget
  68. Input from Bender
  69. Output to Controller
  70. End
  71.  
  72. --Unpacker
  73. Every 20 ticks do
  74. Input silicon_block from Interface
  75. Output to Unpacker
  76. Forget
  77. Input from Unpacker
  78. Output to Controller
  79. End
  80.  
  81. --Macerator
  82. Every 20 ticks do
  83. Input silicon_ingot from Controller
  84. Output to Macerator
  85. Forget
  86. Input from Macerator
  87. Output to Controller
  88. End
  89.  
  90. --Mixer
  91. Every 20 ticks do
  92. Input fluid::creosote from Controller
  93. Output fluid::creosote to Mixer
  94. Forget
  95. Input redstone from Interface
  96. Output to Mixer
  97. Forget
  98. Input fluid::lubricant from Mixer
  99. Output fluid:: to Controller
  100. End
  101.  
  102. --Cutting Machine
  103. Every 20 ticks do
  104. Input *ingot*, *rod* from Controller, Interface
  105. Output to Cutting
  106. Forget
  107. Input fluid::lubricant from Controller
  108. Output retain 2000 fluid::lubricant to each Cutting
  109. Forget
  110. Input from Cutting
  111. Output to Controller
  112. End
  113.  
  114. --Centrifuge(Chromium)
  115. Every 20 ticks do
  116. Input fluid::lava from Interface
  117. Output retain 16000 fluid::lava to each Centrifuge
  118. Forget
  119. Input from Centrifuge
  120. Output chromium_nugget to Interface
  121. Output except chromium_nugget to Trash
  122. End
  123.  
  124. --Centrifuge(Manganese Dust)
  125. Every 20 ticks do
  126. Input raw_iron from Interface
  127. Output to Centrifuge
  128. Forget
  129. Input from Centrifuge
  130. Output manganese_crushed_dust to Controller
  131. Output except manganese_crushed_dust to Trash
  132. End
Advertisement
Add Comment
Please, Sign In to add comment