Advertisement
stom66

ARK: arkserver.cfg

Jul 23rd, 2018
838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. ########################################
  2. ######## Custom Server Settings ########
  3. ########################################
  4. # Save this config file with the following naming format:
  5. # [instance].cfg - applies settings to a specific instance
  6.  
  7. #### Server Settings ####
  8.  
  9. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  10. ip="0.0.0.0"
  11. port="7777"
  12. queryport="27015"
  13. rconport="27020"
  14. maxplayers="16"
  15. map="Ragnarok"
  16. extra_params=" -automanagedmods"
  17.  
  18. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  19. fn_parms(){
  20. parms="\"${map}?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?\"${extra_params}"
  21. }
  22.  
  23.  
  24. #### LinuxGSM Settings ####
  25.  
  26. ## Notification Alerts
  27. # (on|off)
  28.  
  29. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  30. postalert="off"
  31. postdays="7"
  32. posttarget="https://hastebin.com"
  33.  
  34. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  35. discordalert="off"
  36. discordwebhook="webhook"
  37.  
  38. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  39. emailalert="off"
  40. email="email@example.com"
  41. emailfrom=""
  42.  
  43. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  44. iftttalert="off"
  45. ifttttoken="accesstoken"
  46. iftttevent="linuxgsm_alert"
  47.  
  48. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  49. mailgunalert="off"
  50. mailguntoken="accesstoken"
  51. mailgundomain="example.com"
  52. mailgunemailfrom="alert@example.com"
  53. mailgunemail="email@myemail.com"
  54.  
  55. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  56. pushbulletalert="off"
  57. pushbullettoken="accesstoken"
  58. channeltag=""
  59.  
  60. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  61. pushoveralert="off"
  62. pushovertoken="accesstoken"
  63.  
  64. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  65. telegramalert="off"
  66. telegramtoken="accesstoken"
  67. telegramchatid=""
  68.  
  69. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  70. updateonstart="on"
  71.  
  72. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  73. maxbackups="7"
  74. maxbackupdays="30"
  75. stoponbackup="on"
  76.  
  77. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  78. consolelogging="on"
  79. logdays="14"
  80.  
  81. #### LinuxGSM Advanced Settings ####
  82.  
  83. ## SteamCMD Settings
  84. # Server appid
  85. appid="376030"
  86. # Steam App Branch Select
  87. # Allows to opt into the various Steam app branches. Default branch is "".
  88. # Example: "-beta latest_experimental"
  89. branch=""
  90.  
  91. ## LinuxGSM Server Details
  92. # Do not edit
  93. gamename="Custom Ark Server"
  94. engine="unreal4"
  95.  
  96. #### Directories ####
  97. # Edit with care
  98.  
  99. arkStagingDir="${lgsmdir}/staging"
  100.  
  101. ## Server Specific Directories
  102. systemdir="${serverfiles}/ShooterGame"
  103. executabledir="${systemdir}/Binaries/Linux"
  104. executable="./ShooterGameServer"
  105. servercfgdir="${systemdir}/Saved/Config/LinuxServer"
  106. servercfg="GameUserSettings.ini"
  107. servercfgdefault="GameUserSettings.ini"
  108. servercfgfullpath="${servercfgdir}/${servercfg}"
  109.  
  110. ## Backup Directory
  111. backupdir="${lgsmdir}/backup"
  112.  
  113. ## Logging Directories
  114. logdir="${rootdir}/log"
  115. gamelogdir="${systemdir}/Saved/Logs"
  116. lgsmlogdir="${logdir}/script"
  117. consolelogdir="${logdir}/console"
  118. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  119. consolelog="${consolelogdir}/${servicename}-console.log"
  120. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  121. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  122.  
  123. ## Logs Naming
  124. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  125. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement