Advertisement
ReDestroyDeR

Untitled

Oct 13th, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local a = require("component")
  2. local b = a.chat_box
  3. local e = require("event")
  4. local g = a.gpu
  5. local ss = require("term")
  6.  
  7. ss.clear()
  8. g.setResolution(50,20)
  9.  
  10.  
  11. --Сюда админов надо добавить крч
  12. local b = {
  13.  
  14. ""
  15. ""
  16.  
  17. }
  18.  
  19. while true do
  20. local _, add, nick, msg = e.pull("chat_message")
  21. for i = 1,#b do if ( nick ~= b[i] ) then
  22. g.setForeground(0x00D600)
  23. print(""..nick.." wrote:")
  24. g.setForeground(0xFFB600)
  25. print(""..msg.."")
  26. end
  27. end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement