Guest User

startup

a guest
Jun 12th, 2013
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. m = peripheral.wrap("right")
  2. m.setFreq(60)
  3. while true do
  4.    if m.get() then
  5.       turtle.placeDown()
  6.    else
  7.       turtle.digDown()
  8.    end
  9.    sleep(10)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment