Advertisement
Guest User

startup

a guest
Apr 8th, 2020
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. --2618
  2. rednet.open("right")
  3. compId= 2551
  4.  
  5. --a, b, c, d, e = os.pullEvent()
  6. --d === id   e = message
  7.  while true do
  8.  id, message = rednet.receive()
  9.  print(id .. message)
  10. --print(id)
  11. if id == compId and message == "penguin" then
  12.     turtle.select(1)
  13.     turtle.dropDown()
  14. elseif id == compId and message == "enderman" then
  15.     turtle.select(2)
  16.     turtle.dropDown()
  17. elseif id == compId and message == "empty" then
  18.     turtle.suckDown()
  19. elseif id == compId and message == "blaze" then
  20.     turtle.select(3)
  21.     turtle.dropDown()
  22. end
  23.  
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement