PDA

View Full Version : How to set up more than 32-players?


DocVon
11-11-2008, 10:25 PM
Any ideas how to set up a server to run more than 32 slots? I have the startup command setup to maxclients 50 but it still runs 32.

Thanks in advance for any help.

piclist
11-11-2008, 10:43 PM
Ni Hao,

Command line:

codwaw_lnxded-bin +set dedicated 2 +set net_ip x.x.x.x +set net_port 28960 +set ui_maxclients 44 +set sv_punkbuster 1 +exec server.cfg +map_rotate


Server.cfg

set sv_maxclients "44" //Set # slots in command line


Good Game, PIC

Martin Llanos
[codwar] Team
piclist@codwar.com.ar
Admin spanish support

Arseynimz
11-11-2008, 11:54 PM
Command line:

codwaw_lnxded-bin +set dedicated 2 +set net_ip x.x.x.x +set net_port 28960 +set ui_maxclients 44 +set sv_punkbuster 1 +exec server.cfg +map_rotate




lol @ positive thinking re: linux files.

DocVon
11-12-2008, 11:37 AM
Thanks Piclist :cool:

The line for the server.cfg file is the missing piece, I believe. I'll check it out. Thanks again.

DocVon
11-13-2008, 01:47 AM
Well, that didn't work either.

My command line (IP omitted):

+set fs_savepath C:\Servers\ticktock\GameServers\TC4431214410507280 0352216\ +set dedicated 2 +set net_ip x.x.x.x +set net_port 28960 +set sv_maxclients 52 +set sv_punkbuster "1" +exec server.cfg +map_rotate

And in my server.cfg:

set sv_maxclients "52"

This is a dedicated Windows box. Is ui_maxclients a linux command??

The command line is auto-generated by my provider's tools...

merlyn_cgoty
11-13-2008, 10:07 AM
Just use both settings in both server.cfg and command line
+set ui_maxclients 44 +set sv_maxclients 44
in command line

and in server.cfg

set ui_maxclients "44"
set sv_maxclients "44"

Hope that helps...

Merlyn

DocVon
11-13-2008, 01:51 PM
That was it...including both entries in both places made it work.

Thanks everyone! :D