Advertisement
Guest User

farmin1.lua

a guest
Apr 9th, 2020
203
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 mineLine()
  2.     while turtle.forward() do
  3.         turtle.digDown()
  4.         turtle.suckDown()
  5.         turtle.placeDown()
  6.     end
  7. end
  8.  
  9. local function turnAround()
  10.     turtle.turnRight()
  11.     turtle.forward()
  12.     turtle.turnRight()
  13. end
  14.  
  15. local iNbOfLines = 8
  16. local iCurrentLine = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement