Browse Source

Added gamemode & gametype vars & parms

Added gamemode & gametype to the varables group and defined it in the server parms.
pull/49/head
Austin St. Aubin 11 years ago
parent
commit
79a2d1e12d
  1. 15
      CounterStrikeGlobalOffensive/csgoserver

15
CounterStrikeGlobalOffensive/csgoserver

@ -13,14 +13,23 @@ emailnotification="off"
email="[email protected]"
# Start Variables
# [Game Modes] game_mode game_type
# Classic Casual 0 0
# Classic Competitive 0 1
# Arms Race 1 0
# Demolition 1 1
gamemode="0"
gametype="0"
defaultmap="de_dust"
mapgroup="random_classic"
maxplayers="16"
port="27015"
sourcetvport="27020"
clientport="27005"
maxplayers="16"
ip="0.0.0.0"
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server
parms="-game csgo -usercon +map ${defaultmap} -strictportbind -ip ${ip} -port ${port} +tv_port ${sourcetvport} +clientport ${clientport} -maxplayers ${maxplayers}"
# Change the parameter "-maxplayers" to "-maxplayers_override" for force the max player limit
parms="-game csgo -usercon +map ${defaultmap} +mapgroup ${defaultmap} +game_mode ${gamemode} +game_type ${gametype} -strictportbind -ip ${ip} -port ${port} +tv_port ${sourcetvport} +clientport ${clientport} -maxplayers ${maxplayers}"
#### Advanced Variables ####
@ -711,4 +720,4 @@ case "$1" in
echo "Usage: $0 {start|stop|restart|update|monitor|email-test|details|backup|console|debug|install}"
exit 1;;
esac
exit
exit

Loading…
Cancel
Save