Guest User

mine

a guest
Aug 2nd, 2013
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. -- Turtle strip mine by adencraft2000
  2.  
  3. local shouldStop = false
  4. while not shouldStop do
  5.  print("Press space to stop the strip mine")
  6.  turtle.dig()
  7.  turtle.up()
  8.  turtle.dig()
  9.  turtle.forward()
  10.  turtle.dig()
  11.  turtle.down()
  12.  turtle.forward()
  13.  sleep(1)
  14.  local event, keyCode = os.pullEvent("key")
  15.  if keyCode == keys.space then
  16.   shouldStop = true
  17.   print("Stopping")
  18.  end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment