Advertisement
kEOKIX

CraftGenerator

Oct 3rd, 2022 (edited)
857
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. function GetBattery()
  2.     turtle.turnRight()
  3.     turtle.select(2)
  4.     turtle.suck(16)
  5.     turtle.turnLeft()
  6.     GetRefinedIron()
  7. end
  8.  
  9. function GetRefinedIron()
  10.     turtle.turnLeft()
  11.     turtle.select(5)
  12.     turtle.suck(16)
  13.     turtle.select(6)
  14.     turtle.suck(16)
  15.     turtle.select(7)
  16.     turtle.suck(16)
  17.     turtle.turnRight()
  18.     GetFurnace()
  19. end
  20.  
  21. function GetFurnace()
  22.     turtle.select(10)
  23.     turtle.suck(16)
  24.     turtle.craft()
  25.     for i = 1, 16 do
  26.         turtle.dropUp()
  27.     end
  28.     sleep(5)
  29.     GetBattery()
  30. end
  31.  
  32. GetBattery()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement