Advertisement
MadScience2728

Turtle Drop

Jan 13th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. bool=true
  2.  
  3. while bool == true do
  4.   if rs.getInput("back", true) then
  5.       print ("Waiting")
  6.       sleep (1)
  7.   else
  8.     print ("Emptying!")
  9.     bool=false
  10.   end
  11. end
  12.  
  13. for dropslot = 3, 16 do
  14.       turtle.select(dropslot)
  15.       turtle.drop()
  16.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement