Advertisement
kEOKIX

CraftBattery

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