Advertisement
Guest User

Untitled

a guest
Mar 13th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  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.  
  9. #### Server Settings ####
  10.  
  11. ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login
  12. steamuser="******"
  13. steampass="*******"
  14. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  15. ip="0.0.0.0"
  16. port="2302"
  17.  
  18. ## ARMA 3 Modules
  19. # Add mods with relative paths:
  20. # mods/@cba_a3
  21. # To load the "Community Base Addons v3" module found in the
  22. # directory serverfiles/mods/@cba_a3. Load several mods as:
  23. # mods="mods/@ace\;mods/@acex\;mods/@cba_a3"
  24. mods="@extDB3;@life_server" <------------------------------------------------------------------------ ICI
  25.  
  26. ## Server-side Mods
  27. servermods=""
  28.  
  29. ## Path to BattlEye
  30. # Leave empty for default
  31. bepath=""
  32.  
  33. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  34. fn_parms(){
  35. parms="-ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory"
  36. }
  37.  
  38. #### LinuxGSM Settings ####
  39.  
  40. ## Notification Alerts
  41. # (on|off)
  42.  
  43. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  44. postalert="off"
  45. postdays="7"
  46. posttarget="https://hastebin.com"
  47.  
  48. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  49. discordalert="off"
  50. discordwebhook="webhook"
  51.  
  52. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  53. emailalert="off"
  54. email="email@example.com"
  55. emailfrom=""
  56.  
  57. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  58. iftttalert="off"
  59. ifttttoken="accesstoken"
  60. iftttevent="linuxgsm_alert"
  61.  
  62. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  63. mailgunalert="off"
  64. mailguntoken="accesstoken"
  65. mailgundomain="example.com"
  66. mailgunemailfrom="alert@example.com"
  67. mailgunemail="email@myemail.com"
  68.  
  69. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  70. pushbulletalert="off"
  71. pushbullettoken="accesstoken"
  72. channeltag=""
  73.  
  74. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  75. pushoveralert="off"
  76. pushovertoken="accesstoken"
  77.  
  78. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  79. telegramalert="off"
  80. telegramtoken="accesstoken"
  81. telegramchatid=""
  82.  
  83. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  84. updateonstart="off"
  85.  
  86. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  87. maxbackups="4"
  88. maxbackupdays="30"
  89. stoponbackup="on"
  90.  
  91. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  92. consolelogging="on"
  93. logdays="7"
  94.  
  95. #### LinuxGSM Advanced Settings ####
  96.  
  97. ## SteamCMD Settings
  98. # Server appid
  99. appid="233780"
  100. # Steam App Branch Select
  101. # Allows to opt into the various Steam app branches. Default branch is "".
  102. # Example: "-beta latest_experimental"
  103. branch=""
  104.  
  105. ## LinuxGSM Server Details
  106. # Do not edit
  107. gamename="ARMA 3"
  108. engine="realvirtuality"
  109.  
  110. #### Directories ####
  111. # Edit with care
  112.  
  113. ## Server Specific Directories
  114. systemdir="${serverfiles}"
  115. executabledir="${serverfiles}"
  116. executable="./arma3server"
  117. servercfg="${servicename}.server.cfg"
  118. networkcfg="${servicename}.network.cfg"
  119. servercfgdefault="server.cfg"
  120. networkcfgdefault="network.cfg"
  121. servercfgdir="${systemdir}/cfg"
  122. servercfgfullpath="${servercfgdir}/${servercfg}"
  123. networkcfgfullpath="${servercfgdir}/${networkcfg}"
  124.  
  125. ## Backup Directory
  126. backupdir="${lgsmdir}/backup"
  127.  
  128. ## Logging Directories
  129. logdir="${rootdir}/log"
  130. lgsmlogdir="${logdir}/script"
  131. consolelogdir="${logdir}/console"
  132. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  133. consolelog="${consolelogdir}/${servicename}-console.log"
  134. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  135. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  136.  
  137. ## Logs Naming
  138. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  139. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement