Advertisement
DerMarten

empf

Jul 27th, 2015
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local modem = peripheral.wrap("back")
  2. modem.open(1)--Open channel 3 so that we can listen on it
  3. while true do
  4. local event, modemSide, senderChannel, replyChannel, message, senderDistance = os.pullEvent("modem_message")
  5. if event == "modem_message" then
  6. print(message)
  7. end
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement