Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. /*
  2. - -------------------------------- -
  3. - -
  4. - MK Productions... -
  5. - Capture The Flag -
  6. - Coded By, X_94 & íL.NíghtShádów -
  7. - -
  8. - -------------------------------- -
  9. */
  10.  
  11. const Files_Path = "Files/"
  12.  
  13. //---- Server Data ---
  14. const ScrName = "[ CTF v0.1 (Beta) ]";
  15. const SrvName = "Capture the flag";
  16. const Creators = "X_94 & NightShadow";
  17. const Helpers = "Rulk";
  18. const Forum = "Creating...";
  19. const MAX_PLAYERS = 50;
  20. const BlueTeam = 6;
  21. const RedTeam = 5;
  22. const BlueFlagPickupID = 506;
  23. const RedFlagPickupID = 507;
  24. const BasePickupID = 343;
  25. const Required_Team_Players = 1;
  26. local BaseID = null, RedFlagPU = null, BlueFlagPU = null, RedBasePU = null, BlueBasePU = null;
  27.  
  28. //---- Irc Data ----
  29. const BotName = "[MK]CTF";
  30. const BotPass = "mkspro";
  31. const IRCServerIP = "85.17.189.153";
  32. const IRCServerPort = 6667;
  33. const EchoChannel = "NT5";
  34. const EchoPass = "moo";
  35. const AdminChannel = "NT5";
  36. const AdmPass = "moo";
  37. const USER = 1;
  38. const VOICE = 2;
  39. const HALFOP = 3;
  40. const OP = 4;
  41. const SOP = 5;
  42. const OWNER = 6;
  43. local IRCNicks = {};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement