yokmama

Dig Dug

Jun 9th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. turtle.refuel()
  2. print("Refueled turtle!")
  3. while turtle.detectDown() do
  4.     print("Digging down!")
  5.     turtle.digDown()
  6.     print("Going down!")
  7.     turtle.down()
  8.     print("Digging forward!")
  9.     turtle.dig()
  10.     print("Going forward!")
  11.     turtle.forward()
  12. end
Add Comment
Please, Sign In to add comment