mercwear

turtle_make_energized_steel

Apr 11th, 2025 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. print("Press CTRL+T to stop")
  2.  
  3. while true do
  4. turtle.select(1) -- Gold or Iron
  5. turtle.place() -- Place item in orb from slot one
  6. turtle.select(2) -- Gold or Iron
  7. turtle.place() -- Place item in orb from slot one
  8.  
  9. os.sleep(8) -- Sleep 8 seconds to let the lasers do their thing
  10. turtle.suck() -- Loot item
  11. os.sleep(1) -- Sleep 1 second
  12. turtle.select(1) -- Gold or Iron
  13. turtle.suckUp(1) -- Replace the iron we just used from more in the chest above
  14. turtle.select(2) -- Gold or Iron
  15. os.sleep(1) -- Sleep 1 second
  16. turtle.suckDown(1) -- Replace the gold we just used from more in the chest below
  17. end
Advertisement
Add Comment
Please, Sign In to add comment