Advertisement
msmikesc

clear

Apr 17th, 2019
172
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("left")
  2. modem.open(4)
  3.  
  4. modem.transmit(3, 4, "clear")
  5.  
  6. while true do
  7. local event, modemSide, senderChannel, replyChannel, message, senderDistance = os.pullEvent("modem_message")
  8. print(message)
  9.  
  10. if message == "Done" then
  11. return
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement