Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <?php
  2. /*
  3. ========== * EVE ONLINE TEAMSPEAK BY MJ MAVERICK * ==========
  4. */
  5. class Config {
  6. // Administrators character
  7. public $admin = "Zyper";
  8. // Teamspeak 3 Server Query Information (REQUIRED)
  9. public $tshost = "50.57.86.183";
  10. public $tsname = "x";
  11. public $tspass = "x";
  12. public $tsport = "10011"; //ServerQuery Port
  13. public $tscport = "9987"; //TeamSpeak client port
  14. // Database Information (REQUIRED)
  15. public $db_host = "localhost";
  16. public $db_user = "x";
  17. public $db_pass = "x";
  18. public $db_name = "x";
  19. // API Connection Testing Information (REQUIRED) - TESTID and TESTname MUST be the characterID and characterName of the SAME character respectively
  20. public $TESTID = 603501050;
  21. public $TESTname = "Zyper";
  22. // Your alliance/corp name
  23. public $ourname = "Crimson Nation";
  24. // Alliance Whitelist Information (REQUIRED) - Example: ("Alliance1","Alliance 2");
  25. public $allyList = array("Sev3rance");
  26. // Corporation Whitelist Information (REQUIRED) - Example: ("Corporation1","Corporation 2");
  27. public $corpList = array("Crimson Nation");
  28. // Debug Mode? (true/false)
  29. public $verbose = false;
  30. // Teamspeak 3 group for alliance/corp members
  31. public $group = 7;
  32. // Teamspeak 3 group for people on the whitelist but not in your alliance/corp
  33. public $bluegroup = 7;
  34. // Banner Image
  35. public $banner = "images/banner.jpg";
  36. // Optional ticker spacers. - Example: For "IRNP | MJ Maverick" use "|".
  37. public $spacer = "";
  38. }
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement