Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. SCREEN_NAME="csgo"
  2. USER="steam"
  3. IP="192.99.228.168"
  4. PORT="27015"
  5.  
  6. # Anonymous connection will be deprecated in the near future. Therefore it is highly recommended to generate a Game Server Login Token.
  7. GSLT="1746963508A6D5D87C1356CBAF72DAC9" # http://steamcommunity.com/dev/managegameservers
  8.  
  9. DIR_STEAMCMD="/var/steamcmd"
  10. STEAM_LOGIN="trixd6"
  11. STEAM_PASSWORD="techkid138526526"
  12. STEAM_RUNSCRIPT="$DIR_STEAMCMD/runscript_$SCREEN_NAME"
  13.  
  14. DIR_ROOT="$DIR_STEAMCMD/games/csgo"
  15. DIR_GAME="$DIR_ROOT/csgo"
  16. DIR_LOGS="$DIR_GAME/logs"
  17. DAEMON_GAME="srcds_run"
  18.  
  19. UPDATE_LOG="$DIR_LOGS/update_`date +%Y%m%d`.log"
  20. UPDATE_EMAIL=""
  21. UPDATE_RETRY=3
  22.  
  23. # Workshop : https://developer.valvesoftware.com/wiki/CSGO_Workshop_For_Server_Operators
  24. API_AUTHORIZATION_KEY="" # http://steamcommunity.com/dev/registerkey
  25. WORKSHOP_COLLECTION_ID="125499818" # http://steamcommunity.com/sharedfiles/filedetails/?id=125499818
  26. WORKSHOP_START_MAP="125488374" # http://steamcommunity.com/sharedfiles/filedetails/?id=125488374
  27.  
  28. # Game config
  29. MAXPLAYERS="18"
  30. TICKRATE="64"
  31. EXTRAPARAMS="-nohltv +sv_pure 0 +game_type 0 +game_mode 0 +mapgroup mg_bomb +map de_dust2"
  32.  
  33. # Major settings
  34. PARAM_START="-game csgo -console -usercon -secure -autoupdate -steam_dir ${DIR_STEAMCMD} -steamcmd_script ${STEAM_RUNSCRIPT} -maxplayers_override ${MAXPLAYERS} -tickrate ${TICKRATE} +hostport ${PORT} +ip ${IP} +net_public_adr ${IP} ${EXTRAPARAMS}"
  35. PARAM_UPDATE="+login ${STEAM_LOGIN} ${STEAM_PASSWORD} +force_install_dir ${DIR_ROOT} +app_update 740 validate +quit"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement