asweigart

furnacefueler

Jul 29th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. -- Furnace Fueler program
  2. -- By Al Sweigart
  3. -- al@inventwithpython.com
  4. -- Stone brick factory robot, 2 of 3
  5.  
  6. local slot
  7.  
  8. while true do
  9. -- get fuel from chest
  10. while turtle.suckDown() do
  11. print('Grabbed fuel from chest.')
  12. end
  13.  
  14. -- put fuel in furnace
  15. for slot=1,16 do
  16. turtle.select(slot)
  17. if turtle.drop() then
  18. print('Loaded some fuel.')
  19. end
  20. end
  21.  
  22. -- pause
  23. print('Sleeping...')
  24. os.sleep(60)
  25. end
Add Comment
Please, Sign In to add comment