mercwear

Cauldron Controller

May 21st, 2025
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. --Control the Alchemist Cauldron from Iron Spells 'n Spellbooks Mod in Minecraft
  2.  
  3. local cauldron_location = 'back'
  4. local water_source_location = 'left'
  5.  
  6. cauldron = peripheral.wrap(cauldron_location)
  7. water_tank = peripheral.wrap(water_source_location)
  8.  
  9. while true do
  10. cauldron.pullFluid('water_tank', 1000)
  11. sleep(5)
  12. cauldron.pushFluid('water_tank', 1000)
  13. sleep(5)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment