Can you add more servers to the inc_config.php file?
Or do you just make another one inc_config1.php?
Find this line:
"numservers" => 1,
If you have 4 servers, it would look like this:
"numservers" => 4,
Then copy the section between this:
1 => array(
and this:
"chatlogger_activated" => 0
),
and paste it, so it looks similar to this:
## settings for your b3 databases
$config = array(
"clanname" => "GrossKopf's Servers",
//How many servers do we have down here
"numservers" => 4,
"servers" => array(
1 => array(
"name" => "AIW-RTD",
// Database connection for the B3
"hostname" => "localhost",
"database" => "dbname1",
"username" => "dbuser1",
"password" => "dbpassword1",
//Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
"PBactive" => "0",
//Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
"rcon_ip" => "127.0.0.1",
"rcon_port" => "28960",
"rcon_pass" => "rconpassword",
// set to 1 if you want permban from that server included into the banlist page.
"include_in_banlist" => 0,
// 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)
"chatlogger_activated" => 0
),
2 => array(
"name" => "AIW-TGG",
// Database connection for the B3
"hostname" => "localhost",
"database" => "dbname2",
"username" => "dbuser2",
"password" => "dbpassword2",
//Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
"PBactive" => "0",
//Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
"rcon_ip" => "127.0.0.1",
"rcon_port" => "28960",
"rcon_pass" => "rconpassword",
// set to 1 if you want permban from that server included into the banlist page.
"include_in_banlist" => 0,
// 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)
"chatlogger_activated" => 0
),
3 => array(
"name" => "AIW-QCZM",
// Database connection for the B3
"hostname" => "localhost",
"database" => "dbname3",
"username" => "dbuser3",
"password" => "dbpassword3",
//Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
"PBactive" => "0",
//Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
"rcon_ip" => "127.0.0.1",
"rcon_port" => "28960",
"rcon_pass" => "rconpassword",
// set to 1 if you want permban from that server included into the banlist page.
"include_in_banlist" => 0,
// 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)
"chatlogger_activated" => 0
),
4 => array(
"name" => "AIW-DMC",
// Database connection for the B3
"hostname" => "localhost",
"database" => "dbname4",
"username" => "dbuser4",
"password" => "dbpassword4",
//Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
"PBactive" => "0",
//Set up rcon for talkback (need chatlogger plugin installed) and PB banning facilities
"rcon_ip" => "127.0.0.1",
"rcon_port" => "28960",
"rcon_pass" => "rconpassword",
// set to 1 if you want permban from that server included into the banlist page.
"include_in_banlist" => 0,
// 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)
"chatlogger_activated" => 0
)
)
);
?>