Guest User

SERVERLOGINDATA.PY

a guest
May 14th, 2020
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. STATE_NONE = "red"
  2.  
  3. STATE_DICT = {
  4.     0 : "red",
  5.     1 : "green",
  6.     2 : "yellow",
  7.     3 : "yellow"
  8. }
  9.  
  10. STATE_TEXT_NONE = "off"
  11.  
  12. MAIN_SERVER_IP = "188.xxx.xxx.xxx"
  13.  
  14. SRV_LIST = ((
  15.     (
  16.         "NAME SERVER",
  17.         (MAIN_SERVER_IP, 21000, "10.tga", "10"),
  18.         [
  19.             ("CH 1", MAIN_SERVER_IP, 21000, 31009),
  20.             ("CH 2", MAIN_SERVER_IP, 22000, 31009),
  21.             ("CH 3", MAIN_SERVER_IP, 23000, 31009),
  22.             ("CH 4", MAIN_SERVER_IP, 24000, 31009),
  23.         ]
  24.     ),
  25. ),
  26. )
  27.  
  28. SERVER_STATE_TABLE = {}
Add Comment
Please, Sign In to add comment