Advertisement
Guest User

rmw.lua

a guest
Dec 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. function fwd(stp)
  2.   for c=1,stp do
  3.     while turtle.detect() do
  4.      turtle.dig()
  5.      sleep(0.25)
  6.      end
  7.     turtle.forward()
  8.     turtle.digUp()
  9.     turtle.digDown()
  10.   end
  11. end
  12.  
  13. function left(stp)
  14.  for c=1, stp do
  15.   turtle.turnLeft()
  16.  end
  17. end
  18.  
  19. function right (stp)
  20.  for c=1, stp do
  21.   turtle.turnRight()
  22.  end
  23. end
  24.  
  25. fwd(28)
  26. right(2)
  27. fwd(28)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement