MatthewGB

CobbleGen

Feb 27th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.15 KB | None | 0 0
  1. gen = 0
  2. while 1==1 do
  3.     suc = turtle.digDown()
  4.     if suc then
  5.         turtle.dropUp(1)
  6.         gen = gen + 1
  7.     end
  8.     sleep(0.5)
  9.     print("Cobble generated:"..gen)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment