TheVoos

Modern Industrialization - Reactor/Electrolyzer

Aug 5th, 2025
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. Every tick do
  2. Input fe:: from Interface
  3. Output fe:: to Chem_Reactor, Electrolyzer
  4. End
  5.  
  6. --Electrolizer
  7. Every 20 ticks do
  8. Input fluid::water from Interface
  9. Output fluid:: to Electrolyzer
  10. Forget
  11. Input fluid:: from Electrolyzer
  12. Output fluid:: to Controller
  13. Output fluid:: to Trash
  14. End
  15.  
  16. --Chemical Reactor
  17. Every 20 ticks do
  18. Input sulfur from Interface
  19. Input fluid::water from Interface
  20. Input fluid::oxygen from Controller
  21. Output item::, fluid:: to Chem_Reactor
  22. Forget
  23. Input fluid:: from Chem_Reactor
  24. Output fluid:: to Controller
  25. End
  26.  
  27. --Chemical Reactor (Manganese Sul Solution)
  28. Every 20 ticks do
  29. Input *manganese* from Controller
  30. Input fluid::sulfuric_acid from Controller
  31. Output item::, fluid:: to Chem_Reactor
  32. Forget
  33. Input fluid:: from Chem_Reactor
  34. Output fluid:: to Controller
  35. End
  36.  
  37. --Electrolyzer (Mang Tiny Dust)
  38. Every 20 ticks do
  39. Input fluid:: from Controller
  40. Output fluid:: to Electrolyzer
  41. Forget
  42. Input from Electrolyzer
  43. Output to Interface
  44. End
Advertisement
Add Comment
Please, Sign In to add comment