Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2015
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. <?php
  2. date_default_timezone_set('Europe/Paris'); // see all available timezones at http://www.php.net/manual/en/timezones.php
  3. $path = "/echelon/";
  4. $hide_admin_level = "128"; // 1, 2, 8, 16, 32, 64, 128 -> Hides clientdetails
  5.  
  6. ## settings for the echelon database
  7. $hostname_wwwvalidate = "DELETED";
  8. $database_wwwvalidate = "DELETED";
  9. $username_wwwvalidate = "DELETED";
  10. $password_wwwvalidate = "DELETED";
  11.  
  12. ## settings for your b3 databases
  13. $config = array(
  14. "clanname" => "Echelon",
  15. //How many servers do we have down here
  16. "numservers" => 4,
  17. "servers" => array(
  18. 1 => array(
  19. "name" => "Napf",
  20. // Database connection for the B3
  21. "hostname" => "DELETED",
  22. "database" => "DELETED",
  23. "username" => "DELETED",
  24. "password" => "DELETED",
  25. //Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
  26. "PBactive" => "0",
  27. //Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
  28. "rcon_ip" => "DELETED",
  29. "rcon_port" => "DELETED",
  30. "rcon_pass" => "DELETED",
  31. // set to 1 if you want permban from that server included into the banlist page.
  32. "include_in_banlist" => 1,
  33. // set this to 1 if you are using the chatlogger plugin setup for that server. (see http://www.bigbrotherbot.com/forums/index.php?topic=423.0)
  34. "chatlogger_activated" => 0
  35. ),
  36. 2 => array(
  37. "name" => "Takistan",
  38. // Database connection for the B3
  39. "hostname" => "DELETED",
  40. "database" => "DELETED",
  41. "username" => "DELETED",
  42. "password" => "DELETED",
  43. //Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
  44. "PBactive" => "0",
  45. //Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
  46. "rcon_ip" => "DELETED",
  47. "rcon_port" => "DELETED",
  48. "rcon_pass" => "DELETED",
  49. // set to 1 if you want permban from that server included into the banlist page.
  50. "include_in_banlist" => 1,
  51. // set this to 1 if you are using the chatlogger plugin setup for that server. (see http://www.bigbrotherbot.com/forums/index.php?topic=423.0)
  52. "chatlogger_activated" => 0
  53. ),
  54. 3 => array(
  55. "name" => "Namalsk",
  56. // Database connection for the B3
  57. "hostname" => "DELETED",
  58. "database" => "DELETED",
  59. "username" => "DELETED",
  60. "password" => "DELETED",
  61. //Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
  62. "PBactive" => "0",
  63. //Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
  64. "rcon_ip" => "DELETED",
  65. "rcon_port" => "DELETED",
  66. "rcon_pass" => "DELETED",
  67. // set to 1 if you want permban from that server included into the banlist page.
  68. "include_in_banlist" => 1,
  69. // set this to 1 if you are using the chatlogger plugin setup for that server. (see http://www.bigbrotherbot.com/forums/index.php?topic=423.0)
  70. "chatlogger_activated" => 0
  71. )
  72. 4 => array(
  73. "name" => "Exile",
  74. // Database connection for the B3
  75. "hostname" => "DELETED",
  76. "database" => "DELETED",
  77. "username" => "DELETED",
  78. "password" => "DELETED",
  79. //Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
  80. "PBactive" => "0",
  81. //Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
  82. "rcon_ip" => "DELETED",
  83. "rcon_port" => "DELETED",
  84. "rcon_pass" => "DELETED",
  85. // set to 1 if you want permban from that server included into the banlist page.
  86. "include_in_banlist" => 1,
  87. // set this to 1 if you are using the chatlogger plugin setup for that server. (see http://www.bigbrotherbot.com/forums/index.php?topic=423.0)
  88. "chatlogger_activated" => 0
  89. )
  90. )
  91. );
  92. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement