I'll bet you have a typo in your config. You're trying to tackle too much at once. copy/paste this rather plain config as your config and see if you can get it running. Then add the lines you want one or a couple at a time while you're testing them.nasrott wrote:replaced my default one in the game, modded it with my clans info. Afterwards I get a "cant find maps/+.maps" error in console and when I try to join the server get a map not running error...
Was wondering what I was doing wrong..
Do have a server running now but am using a cfg configured from my home game, wanted the extra lines that he has in his config..
Would also love to know how to set this server up in game panel as a service in W2K3 server and assign an ip, game type basically.ect, the aurgment needed to start this server on it own. Have it running on my desktop now at present kind of a pain...
Thx, Nasrott
Start it with quake4ded.exe +exec server.cfg
//basic Q4 server cfg save as server.cfg
si_name "MyServerName"
// si_gametype can be "DM", "Team DM", "Tourney", "CTF", "Arena CTF"
si_gameType "DM"
net_serverDedicated 1
si_maxPlayers 10
// si_minPlayers, game will stay in warmup until at least this many
// players connect. Only valid if si_warmup 1
si_minPlayers 1
// si_warmup perform a match warmup
si_warmup 1
// how many seconds the warmup->game countdown lasts
si_countdown 10
net_serverMaxClientRate 16000
si_mapCycle "mp/q4dm1;mp/q4dm2;mp/q4dm3;mp/q4dm4;mp/q4dm5;mp/q4dm6;mp/q4dm7;mp/q4dm8;"
si_fragLimit 30
si_timeLimit 15
// si_map, the map to start on
si_map mp/q4dm1
set logfile "0"
set net_serverRemoteConsolePassword "rconpass"
set net_serverAllowServerMod "0"
spawnServer
//end basic Q4 server cfg
For running as a service, google for windows start as service. Hope that helps.