Advertisement
natie3

FillRest

Nov 30th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. os.loadAPI("moveAPI.lua")
  2.  
  3. function place()
  4.   turtle.select(1)
  5.   moveAPI.move("f pf u pf u pf d d b")
  6.   turtle.select(2)
  7.   moveAPI.move("pf u pf u pf d d")
  8. end
  9.  
  10. function move()
  11.   moveAPI.move("r f f f f f f tl")
  12. end
  13.  
  14. for i = 1, 5 do
  15.   place()
  16.   move()
  17. end
  18.  
  19. place()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement