Advertisement
dlord

mwmine

Mar 23rd, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. function deploy()
  2.   turtle.select(1)
  3.   turtle.place()
  4.   sleep(10)
  5.   while turtle.getItemCount(1) > 0 do
  6.     clearInventory()
  7.     sleep(5)
  8.   end
  9. end
  10.  
  11. function clearInventory()
  12.   for i=1,16 do
  13.     turtle.select(i)
  14.     turtle.dropDown()
  15.   end
  16. end
  17.  
  18. function undeploy()
  19.   clearInventory()
  20.   turtle.select(1)
  21.   turtle.dig()
  22. end
  23.  
  24. deploy()
  25. undeploy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement