_default.cfg 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ##################################
  2. ######## Default Settings ########
  3. ##################################
  4. # DO NOT EDIT WILL BE OVERWRITTEN!
  5. # Copy settings from here and use them in either
  6. # common.cfg - applies settings to every instance
  7. # [instance].cfg - applies settings to a specific instance
  8. #### Server Settings ####
  9. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  10. ip="0.0.0.0"
  11. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  12. # Edit with care | https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt
  13. fn_parms(){
  14. parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}"
  15. }
  16. #### LinuxGSM Settings ####
  17. ## Notification Alerts
  18. # (on|off)
  19. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  20. emailalert="off"
  21. email="email@example.com"
  22. emailfrom=""
  23. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  24. pushbulletalert="off"
  25. pushbullettoken="accesstoken"
  26. channeltag=""
  27. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  28. updateonstart="off"
  29. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  30. maxbackups="4"
  31. maxbackupdays="30"
  32. stoponbackup="on"
  33. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  34. consolelogging="on"
  35. logdays="7"
  36. #### LinuxGSM Advanced Settings ####
  37. ## SteamCMD Settings
  38. # Server appid
  39. appid="41080"
  40. # Steam App Branch Select
  41. # Allows to opt into the various Steam app branches. Default branch is "".
  42. # Example: "-beta latest_experimental"
  43. branch=""
  44. ## LinuxGSM Server Details
  45. # Do not edit
  46. gamename="Serious Sam 3: BFE"
  47. engine="seriousengine35"
  48. #### Directories ####
  49. # Edit with care
  50. ## Server Specific Directories
  51. systemdir="${serverfiles}/Bin"
  52. executable="./runSam3_DedicatedServer.sh"
  53. executabledir="${systemdir}"
  54. servercfg="${servicename}.ini"
  55. servercfgdefault="server.ini"
  56. servercfgdir="${serverfiles}/Content/SeriousSam3/Config"
  57. servercfgfullpath="${servercfgdir}/${servercfg}"
  58. ## Backup Directory
  59. backupdir="${rootdir}/backups"
  60. ## Logging Directories
  61. logdir="${rootdir}/log"
  62. gamelogdir="${logdir}/server"
  63. lgsmlogdir="${logdir}/script"
  64. consolelogdir="${logdir}/console"
  65. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  66. gamelog="${gamelogdir}/${servicename}-game.log"
  67. consolelog="${consolelogdir}/${servicename}-console.log"
  68. emaillog="${lgsmlogdir}/${servicename}-email.log"
  69. ## Logs Naming
  70. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  71. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
  72. gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log"