Michitakaa2018

mine

May 28th, 2015
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. function mining()
  2.  for k=1,1 do
  3.   turtle.digUp()
  4.   turtle.up()
  5.   turtle.digUp()
  6.   turtle.down()
  7.  end
  8. end
  9.  
  10. function mining3()
  11.  for k=1,1 do
  12.   mining()
  13.   turtle.dig()
  14.   turtle.forward()
  15.   turtle.turnRight()
  16.   turtle.dig()
  17.   turtle.place()
  18.   turtle.turnLeft()
  19.   turtle.turnLeft()
  20.   turtle.dig()
  21.   turtle.place()
  22.   turtle.turnRight()
  23.   turtle.digUp()
  24.  end
  25. end
  26.  
  27. mining3()
Advertisement
Add Comment
Please, Sign In to add comment