Bot Limit

Help and support regarding PR:BF2 installation and in-game issues
Post Reply
Boris
Posts: 223
Joined: 2006-11-11 22:18

Bot Limit

Post by Boris »

Is it possible to spawn more than 32 bots in coop mode as I haven't been able to do it after editing:

\mods\pr\ai\aidefault.ai

Code: Select all

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 64
aiSettings.maxBotsIncludeHumans 1
aiSettings.setBotSkill 1.0
\mods\pr\settings\serversettings.con

Code: Select all

sv.maxPlayers 64
sv.coopBotCount 64
%USERPROFILE%\My Documents\Battlefield 2\Profiles\Default\ServerSettings.con

Code: Select all

sv.maxPlayers 64
sv.coopBotCount 64
%USERPROFILE%\My Documents\Battlefield 2\Profiles\0002\ServerSettings.con

Code: Select all

GameServerSettings.setMaxPlayers 64
GameServerSettings.setCoopBotCount 64
If I don't set the above two %USERPROFILE% configs as read-only then they get rewrote to max 32 by the game.
MaSSive
Posts: 4502
Joined: 2011-02-19 15:02

Re: Bot Limit

Post by MaSSive »

If you edit aidefault.ai then dont touch bot settings in server setup screen or it will get overwritten. It works for me but if you want to have 64 bots on one side that will not work. May want to decrease bot difficulty a bit, 1.0 seems too extreme.

sv.maxPlayers and sv.CoopBotCount are not dependent on each other. You can set 16 slots for players and still have 64 bots in game.

Note the lines with rem in front on the end of aidefault.ai file. Remove rem in front of them to activate override feature. Read the explanation in file its quite good explained.
rem *** PRSP Ai v5 ***

echo **************************************************************************
echo ********************PROJECT****REALITY****AI****LOADED********************
echo **************************************************************************

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

aiSettings.setMaxNBots 64
aiSettings.maxBotsIncludeHumans 1
aiSettings.setBotSkill 0.4

rem To override the amount of bots used in PRSP, use the following lines instead of the three lines above.
rem This will render the ingame menu and serversettings.con bot settings not used, as the following lines
rem of code overrides those settings.
rem Just remove the "rem" in front of the lines to make it read by the game, then edit the numbers as needed.

rem aiSettings.overrideMenuSettings 1
rem aiSettings.setMaxNBots 47
rem aiSettings.maxBotsIncludeHumans 0
rem aiSettings.setBotSkill 0.9

run BotNames.ai
aiSettings.setInformationGridDimension 48
rem aiDebug.draw 1
run AIPathFinding.ai
Do not uncomment rem aiDebug.draw 1 or you will see this

Image



Remove rem only on bold text.
Last edited by MaSSive on 2012-07-15 00:07, edited 1 time in total.
Image
CATA4TW!

"People never lie so much as before an election, during a war, or after a hunt."
"God has a special providence for fools, drunks, and the United States of America."
― Otto von Bismarck
Boris
Posts: 223
Joined: 2006-11-11 22:18

Re: Bot Limit

Post by Boris »

Hey, thanks for the reply. Sorry for the long post here (skip to end for the answer)...
If you edit aidefault.ai then dont touch bot settings in server setup screen or it will get overwritten. It works for me but if you want to have 64 bots on one side that will not work.
OK. I don't generally touch the in-game controls if I have overrideMenuSettings 1 set. I'd normally just select map, add it, then deploy, expecting the override in aidefault.ai to set the botcount/ratio/etc.
sv.maxPlayers and sv.CoopBotCount are not dependent on each other. You can set 16 slots for players and still have 64 bots in game.
Hmm, I didn't know that. But, on reading that, I tried setting...

%USERPROFILE%\My Documents\Battlefield 2\Profiles\0002\ServerSettings.con

Code: Select all

GameServerSettings.setMaxPlayers 4
GameServerSettings.setCoopBotCount 64
and...

%USERPROFILE%\My Documents\Battlefield 2\Profiles\Default\ServerSettings.con

Code: Select all

sv.maxPlayers 4
sv.coopBotCount 64
...and it gave me a total of 3 bots plus me in game. It also rewrote those two configs of its own accord to...

Code: Select all

GameServerSettings.setCoopBotCount 48
and...

Code: Select all

sv.coopBotCount 48
...which just messes with my head.

So, I changed it to the following...

%USERPROFILE%\My Documents\Battlefield 2\Profiles\0002\ServerSettings.con

Code: Select all

GameServerSettings.setMaxPlayers 4
GameServerSettings.setCoopBotCount 64
and...

%USERPROFILE%\My Documents\Battlefield 2\Profiles\Default\ServerSettings.con

Code: Select all

sv.maxPlayers 128
sv.coopBotCount 64
...and again, it gave me 3 bots plus me. It also rewrote the configs as before to sv.coopBotCount 48 and GameServerSettings.setCoopBotCount 48.

...

So, let's try something else. If I set the following...

%USERPROFILE%\My Documents\Battlefield 2\Profiles\0002\ServerSettings.con

Code: Select all

GameServerSettings.setMaxPlayers 128
GameServerSettings.setCoopBotCount 64
and...

%USERPROFILE%\My Documents\Battlefield 2\Profiles\Default\ServerSettings.con

Code: Select all

sv.maxPlayers 128
sv.coopBotCount 64
...it results in 32 players; me + 31 bots.

...

I just don't get it. Something seems broken somewhere, or I'm missing something. I don't understand why the in-game menu changes of its own accord between the slider indicating "32" max players set or "48" based on the various combinations of configuration (which seems to determine what the configs are rewrote to), though no matter what I do I'm not able to spawn more than 32 bots.
Note the lines with rem in front on the end of aidefault.ai file. Remove rem in front of them to activate override feature. Read the explanation in file its quite good explained.
Yeah, I've checked and double-checked that. It should be fine, but I'll post it verbatim...

Code: Select all

rem *** PRSP Ai v5 ***

echo **************************************************************************
echo ********************PROJECT****REALITY****AI****LOADED********************
echo **************************************************************************

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

rem	aiSettings.setMaxNBots 64
rem	aiSettings.maxBotsIncludeHumans 1
rem	aiSettings.setBotSkill 0.4

rem	To override the amount of bots used in PRSP, use the following lines instead of the three lines above.
rem	This will render the ingame menu and serversettings.con bot settings not used, as the following lines
rem	of code overrides those settings.
rem	Just remove the "rem" in front of the lines to make it read by the game, then edit the numbers as needed.

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 64
aiSettings.maxBotsIncludeHumans 1
aiSettings.setBotSkill 1.0

run BotNames.ai

aiSettings.setInformationGridDimension 48

rem aiDebug.draw 1

run AIPathFinding.ai
Hmm, maybe if I try...

\mods\pr\ai\aidefault.ai

Code: Select all

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 64
aiSettings.maxBotsIncludeHumans 0 [color=red]<------------------- instead of 1[/color]
aiSettings.setBotSkill 0.9
%USERPROFILE%\My Documents\Battlefield 2\Profiles\0002\ServerSettings.con

Code: Select all

GameServerSettings.setMaxPlayers 128
GameServerSettings.setCoopBotCount 64
%USERPROFILE%\My Documents\Battlefield 2\Profiles\Default\ServerSettings.con

Code: Select all

sv.maxPlayers 128
sv.coopBotCount 64
OK! Now I've 64 bots + me. So it's looking like the problem was the maxBotsIncludeHumans value I'd set. When I originally edited the aidefault.ai file I changed it to "1" thinking that it'd result in me + 63 bots on a 64-player server config. I still don't understand how it arrived at the above "32" and "48" config rewrite business though, but oh well, at least things are working now.

Thanks for the prod, it got me there in the end. :cool:
MaSSive
Posts: 4502
Joined: 2011-02-19 15:02

Re: Bot Limit

Post by MaSSive »

I dont know it might have something to do with

Code: Select all

aiSettings.setInformationGridDimension 48
but I cant say for sure, its just speculating. It been a while since I played with these configs, but I think that sv.maxPlayers should not have any relations with bot settings.

Finally I hate numbers and math, never was good at it. Glad you got it sorted.
Image
CATA4TW!

"People never lie so much as before an election, during a war, or after a hunt."
"God has a special providence for fools, drunks, and the United States of America."
― Otto von Bismarck
Artem_007
Posts: 2
Joined: 2008-06-07 12:09

Re: Bot Limit

Post by Artem_007 »

How to balance this bots?
rem *** PRSP Ai v5 ***

echo **************************************************************************
echo ********************PROJECT****REALITY****AI****LOADED********************
echo **************************************************************************

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

aiSettings.setMaxNBots 128
aiSettings.maxBotsIncludeHumans 1
aiSettings.setBotSkill 0.4

rem To override the amount of bots used in PRSP, use the following lines instead of the three lines above.
rem This will render the ingame menu and serversettings.con bot settings not used, as the following lines
rem of code overrides those settings.
rem Just remove the "rem" in front of the lines to make it read by the game, then edit the numbers as needed.

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 100
aiSettings.maxBotsIncludeHumans 0
aiSettings.setBotSkill 0.9

run botnames.ai
aiSettings.setInformationGridDimension 48
rem aiDebug.draw 1
run aipathfinding.ai
And I have 85 vs 16.
Serversettings.con
sv.autoBalanceTeam 0
sv.teamRatioPercent 100
sv.coopBotRatio 50
sv.coopBotCount 90
sv.coopBotDifficulty 90
I want to play with 128 bots(64 vs 64)
MaSSive
Posts: 4502
Joined: 2011-02-19 15:02

Re: Bot Limit

Post by MaSSive »

Code: Select all

sv.autoBalanceTeam 1
Or use modmanager script, but if its too much for you this will do.
Image
CATA4TW!

"People never lie so much as before an election, during a war, or after a hunt."
"God has a special providence for fools, drunks, and the United States of America."
― Otto von Bismarck
Boris
Posts: 223
Joined: 2006-11-11 22:18

Re: Bot Limit

Post by Boris »

Artem_007 wrote:How to balance this bots?

And I have 85 vs 16.
Serversettings.con

I want to play with 128 bots(64 vs 64)
I believe the maximum bot count you can have is 96 (48 per side) before team balance becomes impossible.

Example configs...

YourProfile\ServerSettings.con:

Code: Select all

GameServerSettings.setServerName "0001ServerSettings.con"
GameServerSettings.setPassword ""
GameServerSettings.setInternet 0
GameServerSettings.setMaxPlayers 1
GameServerSettings.setSpawnTime 30
GameServerSettings.setManDownTime 300
GameServerSettings.setTicketRatio 999
GameServerSettings.setRoundsPerMap 1
GameServerSettings.setTimeLimit 0
GameServerSettings.setScoreLimit 0
GameServerSettings.setSoldierFF 100
GameServerSettings.setVehicleFF 100
GameServerSettings.setSoldierSplashFF 100
GameServerSettings.setVehicleSplashFF 100
GameServerSettings.setPunishTeamKills 1
GameServerSettings.setVotingEnabled 1
GameServerSettings.setVoteTime 5
GameServerSettings.setMinPlayersForVoting 1
GameServerSettings.setTeamVoteOnly 0
GameServerSettings.setVoipEnabled 0
GameServerSettings.setVoipQuality 3
GameServerSettings.setVoipServerRemote 0
GameServerSettings.setVoipServerRemoteIP 
GameServerSettings.setVoipServerPort 55125
GameServerSettings.setVoipBFClientPort 55123
GameServerSettings.setVoipBFServerPort 55124
GameServerSettings.setVoipSharedPassword 
GameServerSettings.setAutoRecord 0
GameServerSettings.setSvPunkBuster 0
GameServerSettings.setTeamRatio 50
GameServerSettings.setAutoBalanceTeam 0
GameServerSettings.setFriendlyFireWithMines 1
GameServerSettings.setCoopBotRatio 100
GameServerSettings.setCoopBotCount 48
GameServerSettings.setCoopBotDifficulty 90
GameServerSettings.setNoVehicles 0
aidefault.ai:

Code: Select all

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 95
aiSettings.maxBotsIncludeHumans 0
aiSettings.setBotSkill 0.9

run botnames.ai
aiSettings.setInformationGridDimension 48
rem aiDebug.draw 1
run aipathfinding.ai
From my notes:

Code: Select all

players 64, teamRatio 50, coopBotRatio 50 = 16-48	= team1-team2 (team2=blufor)
players 64, teamRatio 50, coopBotRatio 75 = 24-40
players 64, teamRatio 25, coopBotRatio 75 = 24-40	= teamRatio has no effect
players 64, teamRatio 50, coopBotRatio 100 = 32-32
players 95, teamRatio 50, coopBotRatio 100 = 48-48	96 bot is maximum for even balanced teams
players 127, teamRatio 50, coopBotRatio 80 = 39-89	balance has skewed to team2 because >96 players
players 127, teamRatio 50, coopBotRatio 90 = 44-84
*** EDIT YourProfile\ServerSettings.con - NOT Default\ServerSettings.con ***

*** Set num bots in bf2\mods\pr\ai\aidefault.ai ***

*** maximum bot+player count is 96 before team balance becomes impossible ***

*** CoopBotRatio variable is 100 max ***

*** CoopBotCount resets automatically to 32 or 48 - no need to edit this ***
Artem_007
Posts: 2
Joined: 2008-06-07 12:09

Re: Bot Limit

Post by Artem_007 »

MaSSive wrote:

Code: Select all

sv.autoBalanceTeam 1
Or use modmanager script, but if its too much for you this will do.
It doesn't work.
Boris wrote:I believe the maximum bot count you can have is 96 (48 per side) before team balance becomes impossible.

Example configs...

YourProfile\ServerSettings.con:

Code: Select all

GameServerSettings.setServerName "0001ServerSettings.con"
GameServerSettings.setPassword ""
GameServerSettings.setInternet 0
GameServerSettings.setMaxPlayers 1
GameServerSettings.setSpawnTime 30
GameServerSettings.setManDownTime 300
GameServerSettings.setTicketRatio 999
GameServerSettings.setRoundsPerMap 1
GameServerSettings.setTimeLimit 0
GameServerSettings.setScoreLimit 0
GameServerSettings.setSoldierFF 100
GameServerSettings.setVehicleFF 100
GameServerSettings.setSoldierSplashFF 100
GameServerSettings.setVehicleSplashFF 100
GameServerSettings.setPunishTeamKills 1
GameServerSettings.setVotingEnabled 1
GameServerSettings.setVoteTime 5
GameServerSettings.setMinPlayersForVoting 1
GameServerSettings.setTeamVoteOnly 0
GameServerSettings.setVoipEnabled 0
GameServerSettings.setVoipQuality 3
GameServerSettings.setVoipServerRemote 0
GameServerSettings.setVoipServerRemoteIP 
GameServerSettings.setVoipServerPort 55125
GameServerSettings.setVoipBFClientPort 55123
GameServerSettings.setVoipBFServerPort 55124
GameServerSettings.setVoipSharedPassword 
GameServerSettings.setAutoRecord 0
GameServerSettings.setSvPunkBuster 0
GameServerSettings.setTeamRatio 50
GameServerSettings.setAutoBalanceTeam 0
GameServerSettings.setFriendlyFireWithMines 1
GameServerSettings.setCoopBotRatio 100
GameServerSettings.setCoopBotCount 48
GameServerSettings.setCoopBotDifficulty 90
GameServerSettings.setNoVehicles 0
aidefault.ai:

Code: Select all

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 95
aiSettings.maxBotsIncludeHumans 0
aiSettings.setBotSkill 0.9

run botnames.ai
aiSettings.setInformationGridDimension 48
rem aiDebug.draw 1
run aipathfinding.ai
From my notes:

Code: Select all

players 64, teamRatio 50, coopBotRatio 50 = 16-48	= team1-team2 (team2=blufor)
players 64, teamRatio 50, coopBotRatio 75 = 24-40
players 64, teamRatio 25, coopBotRatio 75 = 24-40	= teamRatio has no effect
players 64, teamRatio 50, coopBotRatio 100 = 32-32
players 95, teamRatio 50, coopBotRatio 100 = 48-48	96 bot is maximum for even balanced teams
players 127, teamRatio 50, coopBotRatio 80 = 39-89	balance has skewed to team2 because >96 players
players 127, teamRatio 50, coopBotRatio 90 = 44-84
*** EDIT YourProfile\ServerSettings.con - NOT Default\ServerSettings.con ***

*** Set num bots in bf2\mods\pr\ai\aidefault.ai ***

*** maximum bot+player count is 96 before team balance becomes impossible ***

*** CoopBotRatio variable is 100 max ***

*** CoopBotCount resets automatically to 32 or 48 - no need to edit this ***
It's works, thx a lot.
Why in bf2 I can have a lot of bots but in pr it is impossible? Developers can't fix it in future?
User avatar
Michael Z Freeman
Posts: 240
Joined: 2009-03-27 18:45

Re: Bot Limit

Post by Michael Z Freeman »

Should this work witha dedicated server ? I've been trying but for the life of me it's always unbalanced, 9 bots on one side, all the rest on the other. I copied the serversettings.con above directly and made sure it was loading from the profile directory by putting in an "echo" message.
LITOralis.nMd
Retired PR Developer
Posts: 5658
Joined: 2010-04-10 16:15

Re: Bot Limit

Post by LITOralis.nMd »

I don't have an answer for you, I never delved into these settings, hopefully a server admin will see this thread or your Co-op subforum posts and respond.
LordAgorath863
Posts: 2
Joined: 2024-01-15 07:07
Location: Phoenix AZ

Re: Bot Limit

Post by LordAgorath863 »

I Know Im probably one of the Few still playing this in 2025, but im seriously against a wall. I cannot for the life of me get bots in a COOP Dedicated Server to Evenly distribute between two teams. ive tried every single file edit that others in the past have done to no Avail. Setting every bot ratio, team auto balance, nothing. I got the amount of bots to 96,but they are all on one team. Am I Just Dumb, or is there something im missing? Im Listing all files edited and which file it is. someone who can clearly see what im missing HELP!!

File: Documents/Project Reality/Profiles/0001/Serversettings.con
GameServerSettings.setServerName "PR:BF2 Server"
GameServerSettings.setPassword ""
GameServerSettings.setInternet 0
GameServerSettings.setMaxPlayers 96
GameServerSettings.setSpawnTime 10
GameServerSettings.setManDownTime 10
GameServerSettings.setTicketRatio 100
GameServerSettings.setRoundsPerMap 1
GameServerSettings.setTimeLimit 0
GameServerSettings.setScoreLimit 0
GameServerSettings.setSoldierFF 100
GameServerSettings.setVehicleFF 100
GameServerSettings.setSoldierSplashFF 100
GameServerSettings.setVehicleSplashFF 100
GameServerSettings.setPunishTeamKills 1
GameServerSettings.setVotingEnabled 1
GameServerSettings.setVoteTime 90
GameServerSettings.setMinPlayersForVoting 1
GameServerSettings.setTeamVoteOnly 1
GameServerSettings.setVoipEnabled 0
GameServerSettings.setVoipQuality 3
GameServerSettings.setVoipServerRemote 0
GameServerSettings.setVoipServerRemoteIP
GameServerSettings.setVoipServerPort 55125
GameServerSettings.setVoipBFClientPort 55123
GameServerSettings.setVoipBFServerPort 55124
GameServerSettings.setVoipSharedPassword
GameServerSettings.setAutoRecord 0
GameServerSettings.setSvPunkBuster 0
GameServerSettings.setTeamRatio 50
GameServerSettings.setAutoBalanceTeam 1
GameServerSettings.setFriendlyFireWithMines 0
GameServerSettings.setCoopBotRatio 50
GameServerSettings.setCoopBotCount 48
GameServerSettings.setCoopBotDifficulty 60
GameServerSettings.setNoVehicles 0
Set File To READ-ONLY

File: Documents/Project Reality/Profiles/Default/Serversettings.con
sv.serverName "PR:BF2 Server"
sv.password ""
sv.internet 0
sv.bandwidthChoke 0
sv.serverIP ""
sv.serverPort 16567
sv.welcomeMessage "This Better Work!"
sv.punkBuster 0
sv.allowFreeCam 0
sv.allowExternalViews 0
sv.allowNoseCam 0
sv.hitIndicator 0
sv.maxPlayers 96
sv.numPlayersNeededToStart 1
sv.notEnoughPlayersRestartDelay 15
sv.startDelay 15
sv.endDelay 15
sv.spawnTime 10
sv.manDownTime 10
sv.endOfRoundDelay 15
sv.ticketRatio 100
sv.roundsPerMap 1
sv.timeLimit 0
sv.scoreLimit 0
sv.soldierFriendlyFire 100
sv.vehicleFriendlyFire 100
sv.soldierSplashFriendlyFire 100
sv.vehicleSplashFriendlyFire 100
sv.tkPunishEnabled 1
sv.tkNumPunishToKick 3
sv.tkPunishByDefault 0
sv.votingEnabled 1
sv.voteTime 90
sv.minPlayersForVoting 1
sv.teamVoteOnly 1
sv.gameSpyPort 29900
sv.allowNATNegotiation 0
sv.interfaceIP
sv.autoRecord 0
sv.demoIndexURL "http://"
sv.demoDownloadURL "http://"
sv.autoDemoHook "adminutils/demo/rotate_demo.exe"
sv.demoQuality 1
sv.adminScript ""
sv.timeBeforeRestartMap 30
sv.autoBalanceTeam 1
sv.teamRatioPercent 50
sv.coopBotRatio 50
sv.coopBotCount 48
sv.coopBotDifficulty 60
sv.voipEnabled 0
sv.voipQuality 3
sv.voipServerRemote 0
sv.voipServerRemoteIP
sv.voipServerPort 55125
sv.voipBFClientPort 55123
sv.voipBFServerPort 55124
sv.voipSharedPassword
sv.useGlobalRank 1
sv.useGlobalUnlocks 1
sv.noVehicles 0
sv.sponsorText "Welcome to a Project Reality server!|pr_maplist"
sv.sponsorLogoURL ""
sv.communityLogoURL ""
sv.radioSpamInterval 6
sv.radioMaxSpamFlagCount 6
sv.radioBlockedDurationTime 30
sv.numReservedSlots 0
sv.friendlyFireWithMines 0
Set File To READ-ONLY

File:C:\Program Files (x86)\Project Reality\Project Reality BF2\mods\pr\ai\aidefault.ai
rem *** PRSP Ai v5 ***

echo **************************************************************************
echo ********************PROJECT****REALITY****AI****LOADED********************
echo **************************************************************************

aiSettings.setNSides 2
aiSettings.setAutoSpawnBots 1

aiSettings.setMaxNBots 96
rem aiSettings.maxBotsIncludeHumans 1
rem aiSettings.setBotSkill 0.7

rem To override the amount of bots used in PRSP, use the following lines instead of the three lines above.
rem This will render the ingame menu and serversettings.con bot settings not used, as the following lines
rem of code overrides those settings.
rem Just remove the "rem" in front of the lines to make it read by the game, then edit the numbers as needed.

aiSettings.overrideMenuSettings 1
aiSettings.setMaxNBots 96
aiSettings.maxBotsIncludeHumans 0
aiSettings.setBotSkill 0.7

run botnames.ai
aiSettings.setInformationGridDimension 48
rem aiDebug.draw 1
run aipathfinding.ai


File:C:\Program Files (x86)\Project Reality\Project Reality BF2\mods\pr\settings\serversettings.con
rem Name of the server for the server list
sv.serverName "Colonel Agorath's Server"
rem Password for joining the server
sv.password ""
rem 1 for internet servers, 0 for everything else
sv.internet 0
rem IPv4 of the server
sv.serverIP ""
rem Port of the server
sv.serverPort 16567
rem Port to query server information
sv.gameSpyPort 29900
rem IPv4:Port of the mumble server to use. Leave empty to disable mumble
sv.voipServerRemoteIP ""
rem Message displayed in loading screen
sv.welcomeMessage "This Better Work!"
rem Message displayed in server browser. User '|' for line breaks and add 'pr_maplist' to add next maps in rotation
sv.sponsorText "Welcome to a Project Reality server!|pr_maplist"
rem Logo displayed in server browser
sv.sponsorLogoURL ""
rem Logo displayed in server browser
sv.communityLogoURL ""

sv.allowFreeCam 0
sv.allowExternalViews 0
sv.allowNoseCam 0
sv.hitIndicator 0
sv.maxPlayers 100
sv.numPlayersNeededToStart 1
sv.notEnoughPlayersRestartDelay 15
sv.ticketRatio 100
sv.roundsPerMap 1
sv.timeLimit 0
sv.scoreLimit 0
sv.soldierFriendlyFire 100
sv.vehicleFriendlyFire 100
sv.soldierSplashFriendlyFire 100
sv.vehicleSplashFriendlyFire 100
sv.tkPunishEnabled 1
sv.tkNumPunishToKick 3
sv.tkPunishByDefault 0
sv.votingEnabled 1
sv.voteTime 90
sv.minPlayersForVoting 1
sv.allowNATNegotiation 0
sv.autoRecord 0
sv.demoIndexURL http://
sv.demoDownloadURL http://
sv.autoDemoHook "adminutils/demo/rotate_demo.exe"
sv.demoQuality 1
sv.timeBeforeRestartMap 30
sv.autoBalanceTeam 1
sv.teamRatioPercent 50
sv.coopBotRatio 50
sv.coopBotCount 48
sv.coopBotDifficulty 60
sv.useGlobalRank 1
sv.useGlobalUnlocks 1
sv.radioSpamInterval 6
sv.radioMaxSpamFlagCount 6
sv.radioBlockedDurationTime 30

rem DO NOT MODIFY
sv.adminScript ""

rem NOT SUPPORTED
sv.startDelay 15
sv.endDelay 15
sv.spawnTime 10
sv.manDownTime 10
sv.endOfRoundDelay 15
sv.punkBuster 0
sv.voipEnabled 0
sv.voipQuality 3
sv.interfaceIP ""
sv.voipServerRemote 0
sv.voipServerPort 55125
sv.voipBFClientPort 55123
sv.voipBFServerPort 55124
sv.voipSharedPassword ""

NOTE
Im Only Playing by myself, Hence Why I want As Many Opponents As possible, But not unfairly So. It should be 50-50 but im ending up with 99-1 basically. HELP
Post Reply

Return to “PR:BF2 Support”