Guest User

turtleSpawn

a guest
Oct 30th, 2013
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. --the ID of the control computer
  2. local controller = 29
  3.  
  4. function spawn()
  5.   turtle.select(slot)
  6.   turtle.drop()
  7. end
  8.  
  9. function retrieve()
  10.   turtle.select(slot)
  11.   turtle.suck()
  12. end
  13.  
  14.  
  15. --code
  16.  
  17. rednet.open("right")
  18.  
  19. while true do
  20.   id,z = rednet.receive()
  21.  
  22.   if id == controller and z < 17 then
  23.     slot = z
  24.     spawn()
  25.   elseif id == controller and z == 17 then
  26.     retrieve()
  27.   end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment