_default.cfg 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  20. postalert="off"
  21. postdays="7"
  22. posttarget="https://hastebin.com"
  23. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  24. discordalert="off"
  25. discordwebhook="webhook"
  26. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  27. emailalert="off"
  28. email="email@example.com"
  29. emailfrom=""
  30. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  31. iftttalert="off"
  32. ifttttoken="accesstoken"
  33. iftttevent="linuxgsm_alert"
  34. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  35. mailgunalert="off"
  36. mailguntoken="accesstoken"
  37. mailgundomain="example.com"
  38. mailgunemailfrom="alert@example.com"
  39. mailgunemail="email@myemail.com"
  40. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  41. pushbulletalert="off"
  42. pushbullettoken="accesstoken"
  43. channeltag=""
  44. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  45. pushoveralert="off"
  46. pushovertoken="accesstoken"
  47. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  48. telegramalert="off"
  49. telegramtoken="accesstoken"
  50. telegramchatid=""
  51. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  52. updateonstart="off"
  53. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  54. maxbackups="4"
  55. maxbackupdays="30"
  56. stoponbackup="on"
  57. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  58. consolelogging="on"
  59. logdays="7"
  60. #### LinuxGSM Advanced Settings ####
  61. ## SteamCMD Settings
  62. # Server appid
  63. appid="41080"
  64. # Steam App Branch Select
  65. # Allows to opt into the various Steam app branches. Default branch is "".
  66. # Example: "-beta latest_experimental"
  67. branch=""
  68. ## LinuxGSM Server Details
  69. # Do not edit
  70. gamename="Serious Sam 3: BFE"
  71. engine="seriousengine35"
  72. #### Directories ####
  73. # Edit with care
  74. ## Server Specific Directories
  75. systemdir="${serverfiles}/Bin"
  76. executable="./runSam3_DedicatedServer.sh"
  77. executabledir="${systemdir}"
  78. servercfg="${servicename}.ini"
  79. servercfgdefault="server.ini"
  80. servercfgdir="${serverfiles}/Content/SeriousSam3/Config"
  81. servercfgfullpath="${servercfgdir}/${servercfg}"
  82. ## Backup Directory
  83. backupdir="${rootdir}/backups"
  84. ## Logging Directories
  85. logdir="${rootdir}/log"
  86. gamelogdir="${logdir}/server"
  87. lgsmlogdir="${logdir}/script"
  88. consolelogdir="${logdir}/console"
  89. gamelog="${gamelogdir}/${servicename}-game.log"
  90. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  91. consolelog="${consolelogdir}/${servicename}-console.log"
  92. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  93. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  94. ## Logs Naming
  95. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  96. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
  97. gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log"