Advertisement
DerMarten

empf2

Jul 27th, 2015
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 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. local oldMessage = ""
  4. while true do
  5. local event, modemSide, senderChannel, replyChannel, message, senderDistance = os.pullEvent("modem_message")
  6. if event == "modem_message" then
  7. if message == oldMessage then
  8.  
  9. else
  10. term.clear()
  11. print(message)
  12. end
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement