Advertisement
minimite

turtlethingymabobclient

Dec 30th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. rednet.open("top")
  2. term.clear()
  3. term.setCursorPos(1,1)
  4. term.setTextColor(colors.yellow)
  5. print("Turtle Monitoring System")
  6. term.setTextColor(colors.white)
  7. local turtleid = 199
  8.  
  9. while true do
  10.     local id, message, protocol = rednet.receive("atenefyrturtle")
  11.     if id == turtleid then
  12.         print(turtleid .. " ==> " .. os.getComputerID() .. ": " .. message)
  13.     end
  14.     sleep(0.5)
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement