_default.cfg 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login
  10. steamuser="username"
  11. steampass='password'
  12. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  13. defaultmap="KF-BioticsLab.rom"
  14. ip="0.0.0.0"
  15. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  16. fn_parms(){
  17. parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}"
  18. # Server Start Command for Objective mode
  19. #defaultmap="KFO-Steamland"
  20. #parms="server ${defaultmap}?Game=KFStoryGame.KFStoryGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}"
  21. }
  22. #### LinuxGSM Settings ####
  23. ## Notification Alerts
  24. # (on|off)
  25. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  26. emailalert="off"
  27. email="email@example.com"
  28. emailfrom=""
  29. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  30. pushbulletalert="off"
  31. pushbullettoken="accesstoken"
  32. channeltag=""
  33. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  34. updateonstart="off"
  35. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  36. maxbackups="4"
  37. maxbackupdays="30"
  38. stoponbackup="on"
  39. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  40. consolelogging="on"
  41. logdays="7"
  42. #### LinuxGSM Advanced Settings ####
  43. ## SteamCMD Settings
  44. # Server appid
  45. appid="215360"
  46. # Steam App Branch Select
  47. # Allows to opt into the various Steam app branches. Default branch is "".
  48. # Example: "-beta latest_experimental"
  49. branch=""
  50. ## LinuxGSM Server Details
  51. # Do not edit
  52. gamename="Killing Floor"
  53. engine="unreal2"
  54. #### Directories ####
  55. # Edit with care
  56. ## Server Specific Directories
  57. systemdir="${serverfiles}/System"
  58. executabledir="${systemdir}"
  59. executable="./ucc-bin"
  60. servercfg="${servicename}.ini"
  61. servercfgdefault="Default.ini"
  62. servercfgdir="${systemdir}"
  63. servercfgfullpath="${servercfgdir}/${servercfg}"
  64. compressedmapsdir="${rootdir}/Maps-Compressed"
  65. ## Backup Directory
  66. backupdir="${rootdir}/backups"
  67. ## Logging Directories
  68. logdir="${rootdir}/log"
  69. gamelogdir="${logdir}/server"
  70. lgsmlogdir="${logdir}/script"
  71. consolelogdir="${logdir}/console"
  72. gamelog="${gamelogdir}/${servicename}-game.log"
  73. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  74. consolelog="${consolelogdir}/${servicename}-console.log"
  75. emaillog="${lgsmlogdir}/${servicename}-email.log"
  76. ## Logs Naming
  77. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  78. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"