Advertisement
Guest User

startup

a guest
Jul 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. turtle.equipLeft()
  2. turtle.equipLeft()
  3.  
  4. rednet.open("left")
  5.  
  6. while true do
  7.   a,b,c=rednet.receive()
  8.   if a == 88 then
  9.     if b == "in" then
  10.       turtle.dropUp()
  11.     elseif b == "out" then
  12.       turtle.suckUp()
  13.     else
  14.       d = tonumber(b)
  15.       turtle.select(d)
  16.     end
  17.     print(b)
  18.   end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement