Return to Castle
Wolfenstein RCon Guide
Rcon Login
| Login to rcon |
/rconpassword password |
It's better to store your rcon password in a
game browser and not login through the console. |
We recommend that you avoid logging in to rcon through the game console.
If you mistype the command you risk printing your rcon password on screen
for everyone on the server to see. Game browsers like All-Seeing Eye and HLSW can store your rcon password
and log you in automatically when you join your server. Alternatively,
you can create a key bind that enters in your password, for example:
/bind r "rconpassword password".
General Commands &
Variables
To issue these with rcon from the game console they must be preceded
with /rcon
| Restart Map |
/map restart |
Resets the map. Everyone starts over and all
previous server changes will now take place. |
| Maximum Players |
/sv_maxclients xx
|
Sets the maximum number (xx) of players that
can connect to your server. You
cannot set above what you are paying for. |
| Time Limit |
/timelimit xx |
Where xx is a number, sets the time limit on
the map to that many minutes.
|
| Kick Player |
/kick [name]
|
Kicks the named player from the server. |
| Friendly
Fire |
/g_friendlyFire 0/1
|
Sets friendly fire to either off (0) or on (1)
|
| Balance Teams |
/g_forcebalance |
Will force the Axis and Allies sides to have
equal number of players. |
| Round Warmup |
/g_warmup xx
|
Where xx is a number, sets the warm up period
before each round to that many seconds |
| Game Gravity |
/g_gravity xxx
|
Where xxx is a number, sets the gravity setting
to that number. Lower numbers mean less gravity where players
can jump huge distances. |
| Game
Speed |
/g_speed xxx |
Sets the base movement speed for players on
the server. Higher numbers mean players move fast.
|
Default Server Config
// Public Info
exec public.cfg
// Server Config
seta sv_pure 1
seta com_hunkMegs "96"
seta com_zoneMegs "32"
// General Settings
seta sv_maxclients "26"
seta sv_privateClients "2"
seta sv_fps "20"
seta g_friendlyFire "1"
seta g_warmup "20"
seta sv_zombietime "1"
seta g_inactivity "120"
// Voting
seta g_allowVote "0"
seta g_complaintlimit "3"
seta g_teamForceBalance "1"
// Extras
seta sv_maxPing "500"
seta sv_minPing "0"
seta sv_floodProtect "1"
seta sv_maxRate "7000"
// Server Passwords
seta rconpassword ":]"
seta sv_privatePassword ":["
// Game Type Settings
// Set the type of game: 5=Custom
seta g_gametype 5
seta timelimit "20"
// Start the Game Map
exec MapRotate.cfg
Create
MapRotate.cfg
Create a document in your /main directory and call it "MapRotate.cfg".
Paste the following into it:
// Start the Game Map
set d1 "set g_gametype 5 ; map mp_depot; set nextmap vstr d1a"
set d1a "map_restart; set nextmap vstr d1b"
set d1b "map_restart; set nextmap vstr d1c"
set d1c "map_restart; set nextmap vstr d2"
set d2 "set g_gametype 5 ; map mp_assault ; set nextmap vstr d2a"
set d2a "map_restart; set nextmap vstr d2b"
set d2b "map_restart; set nextmap vstr d2c"
set d2c "map_restart; set nextmap vstr d3"
set d3 "set g_gametype 5 ; map mp_sub ; set nextmap vstr d3a"
set d3a "map_restart; set nextmap vstr d3b"
set d3b "map_restart; set nextmap vstr d3c"
set d3c "map_restart; set nextmap vstr d4"
set d4 "set g_gametype 5 ; map mp_village ; set nextmap vstr d4a"
set d4a "map_restart; set nextmap vstr d4b"
set d4b "map_restart; set nextmap vstr d4c"
set d4c "map_restart; set nextmap vstr d5"
set d5 "set g_gametype 5 ; map mp_base ; set nextmap vstr d5a"
set d5a "map_restart; set nextmap vstr d5b"
set d5b "map_restart; set nextmap vstr d5c"
set d5c "map_restart; set nextmap vstr d6"
set d6 "set g_gametype 5 ; map mp_assault ; set nextmap vstr d6a"
set d6a "map_restart; set nextmap vstr d6b"
set d6b "map_restart; set nextmap vstr d6c"
set d6c "map_restart; set nextmap vstr d7"
set d7 "set g_gametype 5 ; map mp_castle ; set nextmap vstr d7a"
set d7a "map_restart; set nextmap vstr d7b"
set d7b "map_restart; set nextmap vstr d7c"
set d7c "map_restart; set nextmap vstr d1"
vstr d1
Create a Public.cfg file
// Server Config
seta sv_hostname "SERVERNAME"
seta g_motd "MESSAGE_OF_THE_DAY"
// public info
seta "Administrator" "ADMIN_NAME"
seta "Email" "EMAIL_ADDRESS"
seta "url" "URL"
seta "Location" "LOCATION"
seta "CPU" "CPU_DESCRIPTION"
seta "icq" "ICQ_NUMBER"
seta "Clan" "CLAN_NAME"
seta "Connection" "CONNECTION_SPEED"
// add up to 4 additional master servers to report to
seta sv_master1 "wolfmaster.idsoftware.com"
|