Advertisement
Guest User

Miner turtle

a guest
Jul 13th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. while true do
  2.   turtle.place(front)
  3.   sleep(7)
  4.   turtle.dig(front)
  5.   turtle.up()
  6.   redstone.setBundledOutput(front, colors.white)
  7.   sleep(1)
  8.   redstone.setBundledOutput(front, colors.orange)
  9.   sleep(1)
  10.   redstone.setBundledOutput(front, colors.magenta)
  11.   sleep(1)
  12.   redstone.setBundledOutput(front, colors.lightBlue)
  13.   sleep(1)
  14.   turtle.forward()
  15.   redstone.setBundledOutput(front, colors.yellow)
  16.   sleep(1)
  17.   redstone.setBundledOutput(front, 0)
  18.   sleep(1)
  19.   turtle.down()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement