Advertisement
sofi311d

try2

Sep 3rd, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local function fuel()
  2.     turtle.select(1)
  3.     turtle.refuel()
  4. end
  5.  
  6. local function build()
  7.         turtle.select(2)
  8.         turtle.back()
  9.         turtle.place()                            
  10. end  
  11.  
  12. local function move()
  13.     turtle.up()
  14.     turtle.turnLeft()
  15.     turtle.forward()
  16.     turtle.turnLeft()
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement