_default.cfg 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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://docs.linuxgsm.com/configuration/start-parameters
  10. ip="0.0.0.0"
  11. ## Server Start Command | https://docs.linuxgsm.com/configuration/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. # Display IP | https://docs.linuxgsm.com/alerts#display-ip
  20. displayip=""
  21. # More info | https://docs.linuxgsm.com/alerts#more-info
  22. postalert="off"
  23. postdays="7"
  24. posttarget="https://hastebin.com"
  25. # Discord Alerts | https://docs.linuxgsm.com/alerts/discord
  26. discordalert="off"
  27. discordwebhook="webhook"
  28. # Email Alerts | https://docs.linuxgsm.com/alerts/email
  29. emailalert="off"
  30. email="email@example.com"
  31. emailfrom=""
  32. # IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt
  33. iftttalert="off"
  34. ifttttoken="accesstoken"
  35. iftttevent="linuxgsm_alert"
  36. # Mailgun Email Alerts | https://docs.linuxgsm.com/alerts/mailgun
  37. mailgunalert="off"
  38. mailguntoken="accesstoken"
  39. mailgundomain="example.com"
  40. mailgunemailfrom="alert@example.com"
  41. mailgunemail="email@myemail.com"
  42. # Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
  43. pushbulletalert="off"
  44. pushbullettoken="accesstoken"
  45. channeltag=""
  46. # Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover
  47. pushoveralert="off"
  48. pushovertoken="accesstoken"
  49. # Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram
  50. # You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring".
  51. # like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need
  52. # any custom string in curl - simple ignore this parameter.
  53. telegramalert="off"
  54. telegramtoken="accesstoken"
  55. telegramchatid=""
  56. curlcustomstring=""
  57. ## Updating | https://docs.linuxgsm.com/commands/update
  58. updateonstart="off"
  59. ## Backup | https://docs.linuxgsm.com/commands/backup
  60. maxbackups="4"
  61. maxbackupdays="30"
  62. stoponbackup="on"
  63. ## Logging | https://docs.linuxgsm.com/features/logging
  64. consolelogging="on"
  65. logdays="7"
  66. ## Monitor | https://docs.linuxgsm.com/commands/monitor
  67. # Query delay time
  68. querydelay="1"
  69. #### LinuxGSM Advanced Settings ####
  70. # ANSI Colors
  71. ansi="on"
  72. # Message Display Time
  73. sleeptime="0.5"
  74. ## SteamCMD Settings
  75. # Server appid
  76. appid="41080"
  77. # SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch
  78. branch=""
  79. # Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server
  80. steammaster="false"
  81. ## LinuxGSM Server Details
  82. # Do not edit
  83. gamename="Serious Sam 3: BFE"
  84. engine="seriousengine35"
  85. glibc="2.13"
  86. #### Directories ####
  87. # Edit with care
  88. ## Server Specific Directories
  89. systemdir="${serverfiles}/Bin"
  90. executable="./runSam3_DedicatedServer.sh"
  91. executabledir="${systemdir}"
  92. servercfg="${servicename}.ini"
  93. servercfgdefault="server.ini"
  94. servercfgdir="${serverfiles}/Content/SeriousSam3/Config"
  95. servercfgfullpath="${servercfgdir}/${servercfg}"
  96. ## Backup Directory
  97. backupdir="${rootdir}/backups"
  98. ## Logging Directories
  99. logdir="${rootdir}/log"
  100. gamelogdir="${logdir}/server"
  101. lgsmlogdir="${logdir}/script"
  102. consolelogdir="${logdir}/console"
  103. gamelog="${gamelogdir}/${servicename}-game.log"
  104. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  105. consolelog="${consolelogdir}/${servicename}-console.log"
  106. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  107. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  108. ## Logs Naming
  109. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  110. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
  111. gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log"