Advertisement
hevohevo

ComputerCraft Tutorial: msg_receiver_test1

Mar 12th, 2014
3,388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. -- ##############################
  2. -- msg_receiver test1
  3.  
  4. rednet.open("right")
  5.  
  6. while true do
  7.   local sender_id, message, distance = rednet.receive()
  8.   print("#",sender_id,": ",message)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement