View Full Version : Server cfg help
quietman
01-28-2004, 04:05 PM
HI all:
I am intending to run a server and I should like doing the following that several attempts after I was not able to.
Map rotation S&D, all mapas in this gametype
Besides this, two maps in Tdm gametype-
In S&D maps hurtgen, rocket and brecourt snippers OFF.
In tdm type i should like including 2 custom maps , berlin and base, but mantaining pure server, if not, I should not include them and should use powcamp and ship instead.
Please anyone may help me to do this?
Regards
Quietman
Beltic
01-28-2004, 06:07 PM
first off, the map rotation is easy. it would be similar to "
set sv_maprotation "gametype sd map mp_brecourt gametype tdm map mp_hurtgen gametype sd map mp_harbor gametype re map mp_chateau gametype sd map mp_railyard gametype tdm map mp_depot gametype sd map mp_hurtgen gametype re map mp_rocket gametype sd map mp_dawnville gametype tdm map mp_carentan gametype sd map mp_railyard gametype re map mp_powcamp "
just change everything to SD for gametype.
The 2nd part - thats not possible w/o a mod of some sort. You will have to read up on weapon limit mods to do what ya want.
jdwright
01-28-2004, 10:01 PM
Don't forget that Chateau and Ship don't do SD. :wink:
http://www.infinityward.com/cod/server%20commands.html
And as said before, without a mod, the weapons limiting won't happen.
You shouldnt have any trouble running a pure server with 2 extra maps. I run 5 on one of mine and have no trouble (other than a random crashing I've yet to figure out :? )
necrodoggy
01-29-2004, 12:47 AM
the weapons limiting mods will be on all maps so you can't just turn off snipers for specific maps. You can however limit them to say one sniper per side.
You can put custom maps in the rotation, just make sure you have the game type before it and that the map supports the game type you choose. Then put the map in your main folder on your server. I'm not really sure whether the maps will cause pure problems for people who download them and go to another server. I have downloaded maps and have them in my computer main and have had no troubles going into other pure servers.
Beltic
01-29-2004, 01:26 AM
Don't forget that Chateau and Ship don't do SD. :wink:
http://www.infinityward.com/cod/server%20commands.html
And as said before, without a mod, the weapons limiting won't happen.
You shouldnt have any trouble running a pure server with 2 extra maps. I run 5 on one of mine and have no trouble (other than a random crashing I've yet to figure out :? )
Do you have more than 6 custom pk3's in your main? That was my problem.. had 7, and every few maps - CRASH!
quietman
01-29-2004, 02:06 AM
Hi all:
Thx a lot for helping what I did was the following, have a look at the end of the cfg.
// General Settings
set scr_friendlyfire "0"
set sv_maxClients "20"
set sv_privateClients "1"
set sv_maxRate "20000"
set sv_minPing "0"
set sv_maxPing "200"
set sv_pure "1"
set logfile "1"
set g_log "games_mp.log"
set g_allowVote "0"
set scr_allow_vote "0"
set sv_allowAnonymous "0"
set sv_allowDownload "1"
set sv_cheats "0"
set sv_fps "50"
set sv_master1 "codmaster.activision.com"
set sv_master2 ""
set sv_master3 ""
set sv_master4 ""
set sv_master5 ""
//KillCam
set g_ioteamspec 1
// Weapons
set scr_allow_bar "1"
set scr_allow_bren "1"
set scr_allow_enfield "1"
set scr_allow_fg42 "0"
set scr_allow_kar98k "1"
set scr_allow_kar98ksniper "1"
set scr_allow_m1carbine "1"
set scr_allow_m1garand "1"
set scr_allow_mp40 "1"
set scr_allow_mp44 "1"
set scr_allow_nagant "1"
set scr_allow_nagantsniper "1"
set scr_allow_panzerfaust "0"
set scr_allow_ppsh "1"
set scr_allow_springfield "1"
set scr_allow_sten "1"
set scr_allow_thompson "1"
// DM
set scr_dm_scorelimit "50"
set scr_dm_timelimit "30"
set scr_drawfriend "1"
set scr_forcerespawn "0"
// TDM
set scr_tdm_scorelimit "100"
scr_tdm_timelimit "25"
// SD
set scr_sd_graceperiod "15"
set scr_sd_roundlength "3"
set scr_sd_roundlimit "6"
set scr_sd_scorelimit "0"
set scr_sd_timelimit "25"
// BEL
set scr_bel_alivepointtime "10"
set scr_bel_scorelimit "50"
set scr_bel_timelimit "30"
// RE
set scr_re_graceperiod "15"
set scr_re_roundlength "4"
set scr_re_roundlimit "0"
set scr_re_scorelimit "7"
set scr_re_timelimit "0"
set scr_re_showcarrier "0"
// Map Rotation
set sv_mapRotation "gametype sd exec nosniper.cfg map mp_brecourt gametype sd map mp_carentan exec sniper.cfg gametype sd map mp_dawnville gametype sd map mp_depot gametype sd map mp_harbor gametype sd map exec nosniper.cfg mp_hurtgen gametype sd map mp_pavlov exec sniper.cfg gametype sd map mp_railyard gametype sd exec map zz-mp_base_beta gametype tdm map mp_powcamp gametype tdm map zzzz_user_mp_berlin gametype sd map exec nosniper.cfg mp_rocket"
set sv_mapRotationCurrentmap "mp_brecourt "
So in nosniper.cfg you can find:
set scr_allow_springfield "0"
set scr_allow_kar98ksniper "0"
And in snipper.cfg you can find
set scr_allow_springfield "1"
set scr_allow_kar98ksniper "1"
I set up this and when joining server I only stay at points screen withable to move nor press any part of the keyboard.
Is it possible to do this? Did I make any msitake?
Regards
Quietman
Beltic
01-29-2004, 07:57 AM
Hi all:
Thx a lot for helping what I did was the following, have a look at the end of the cfg.
// General Settings
set scr_friendlyfire "0"
set sv_maxClients "20"
set sv_privateClients "1"
set sv_maxRate "20000"
set sv_minPing "0"
set sv_maxPing "200"
set sv_pure "1"
set logfile "1"
set g_log "games_mp.log"
set g_allowVote "0"
set scr_allow_vote "0"
set sv_allowAnonymous "0"
set sv_allowDownload "1"
set sv_cheats "0"
set sv_fps "50"
set sv_master1 "codmaster.activision.com"
set sv_master2 ""
set sv_master3 ""
set sv_master4 ""
set sv_master5 ""
//KillCam
set g_ioteamspec 1
// Weapons
set scr_allow_bar "1"
set scr_allow_bren "1"
set scr_allow_enfield "1"
set scr_allow_fg42 "0"
set scr_allow_kar98k "1"
set scr_allow_kar98ksniper "1"
set scr_allow_m1carbine "1"
set scr_allow_m1garand "1"
set scr_allow_mp40 "1"
set scr_allow_mp44 "1"
set scr_allow_nagant "1"
set scr_allow_nagantsniper "1"
set scr_allow_panzerfaust "0"
set scr_allow_ppsh "1"
set scr_allow_springfield "1"
set scr_allow_sten "1"
set scr_allow_thompson "1"
// DM
set scr_dm_scorelimit "50"
set scr_dm_timelimit "30"
set scr_drawfriend "1"
set scr_forcerespawn "0"
// TDM
set scr_tdm_scorelimit "100"
scr_tdm_timelimit "25"
// SD
set scr_sd_graceperiod "15"
set scr_sd_roundlength "3"
set scr_sd_roundlimit "6"
set scr_sd_scorelimit "0"
set scr_sd_timelimit "25"
// BEL
set scr_bel_alivepointtime "10"
set scr_bel_scorelimit "50"
set scr_bel_timelimit "30"
// RE
set scr_re_graceperiod "15"
set scr_re_roundlength "4"
set scr_re_roundlimit "0"
set scr_re_scorelimit "7"
set scr_re_timelimit "0"
set scr_re_showcarrier "0"
// Map Rotation
set sv_mapRotation "gametype sd exec nosniper.cfg map mp_brecourt gametype sd map mp_carentan exec sniper.cfg gametype sd map mp_dawnville gametype sd map mp_depot gametype sd map mp_harbor gametype sd map exec nosniper.cfg mp_hurtgen gametype sd map mp_pavlov exec sniper.cfg gametype sd map mp_railyard gametype sd exec map zz-mp_base_beta gametype tdm map mp_powcamp gametype tdm map zzzz_user_mp_berlin gametype sd map exec nosniper.cfg mp_rocket"
set sv_mapRotationCurrentmap "mp_brecourt "
So in nosniper.cfg you can find:
set scr_allow_springfield "0"
set scr_allow_kar98ksniper "0"
And in snipper.cfg you can find
set scr_allow_springfield "1"
set scr_allow_kar98ksniper "1"
I set up this and when joining server I only stay at points screen withable to move nor press any part of the keyboard.
Is it possible to do this? Did I make any msitake?
Regards
Quietman
you cant exec scripts in the set_svmaprotation command. You can only setup gametype and map.
Again, i gotta say WEAPON LIMITING REQUIRES AND ADD ON MODULE. Either that, or your gonna be loading maps and configs manually all day long.
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.