ecco7777

CC Server Chat

Oct 1st, 2017
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. chat1=1
  2. chat2=1
  3. function recieve()
  4. while true do
  5. chat1=http.get("http://www.gecco34.bplaced.net/Stuff/Computercraftlog.txt")
  6. chat1=chat1.readAll()
  7. if chat1~=chat2 then
  8. print(chat1)
  9. chat2=chat1
  10. end
  11. end
  12. end
  13.  
  14. function send()
  15. while true do
  16. email=io.read()
  17. http.post("http://www.gecco34.bplaced.net/Stuff/filewriter.php?message="..textutils.urlEncode(tostring(email)))
  18. end
  19. end
  20.  
  21. parallel.waitForAll(recieve,send)
Add Comment
Please, Sign In to add comment