Advertisement
Guest User

Untitled

a guest
Feb 20th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. [Main]
  2. ;Threads = 0
  3. ; Default Value is the number of CPU Cores Detected (max value is 6, min value is 2)
  4. ; Linux Chroot Environment might only Detect 1 CPU Cores i.e bind /proc
  5.  
  6. Randomize Config File = false
  7. ;This is a legacy option to randomize config file for Arma2 Servers.
  8.  
  9.  
  10. [Rcon]
  11. ;; This is functional, should be working fine. Just needs abit of testing on a live Server
  12.  
  13. Port = 2302
  14. Password = password
  15.  
  16.  
  17. [Steam]
  18. ;; This is for VAC Protocol for VAC Bans + Steam Friends.
  19. ;; This currently has a bug in it, will be fixed next version.
  20. ;; Think of it as tech preview option.
  21. ;; https://steamcommunity.com/dev/apikey
  22. API Key = SECRETS!
  23.  
  24.  
  25. [VAC]
  26. ;; This feature requires Steam + Rcon to be enabled.
  27. ;; Also this feature is called via SQF Code atm, i.e it doesn't auto detect players joining server yet....
  28.  
  29. Auto Ban = false
  30.  
  31. ;; For Player to get banned ( their total VAC Bans => NumberOfVACBans) AND ( Days Since their Last Ban was <= DaysSinceLastBan)
  32. ;; This is also used extDB Protocol VAC:VACBanned returned results
  33. NumberOfVACBans = 1
  34. DaysSinceLastBan = 999999999
  35.  
  36. BanDuration = 0
  37. ;; 0 = Forever, otherwise its x Minutes
  38. BanMessage = Steam VAC Banned
  39.  
  40.  
  41. [Log]
  42. ;; This is just config options for Rcon Logging + BE Logging
  43. ;; Has no effect on extDB Logging
  44. Mode = sync
  45. ;; sync / async
  46. ;; ASync is just kinder on your Harddrive, may be lose of data in the event of a crash.
  47.  
  48.  
  49. [Database1]
  50. ;; Example of SQLite
  51. Type = SQLite
  52. Name = sqlite.db
  53.  
  54. minSessions = 1
  55. ; minSession Default Value = 1
  56.  
  57. ;maxSessions = 4
  58. ; maxSession Default Value = number of Main->Threads
  59. ; You really should leave this value alone
  60. idleTime = 60
  61. ; idleTime no Default Value yet, needs to be defined.
  62. ; idleTime is the time before a database session is stopped if not used.
  63. ; If Database Sessions are greater than minSessions
  64.  
  65.  
  66. [AltisLife]
  67. ;; Example of MySQL
  68. ;; AtlisLifeRPG uses Database2 by default
  69. Type = MySQL
  70. Name = altislife
  71.  
  72. Username = root
  73. Password =
  74. IP = 127.0.0.1
  75. Port = 3306
  76.  
  77. minSessions = 1
  78. ;maxSessions = 4
  79. idleTime = 60
  80.  
  81. compress = false
  82. ; Should only use this if MySQL server is external. Also only for MySQL
  83.  
  84. Secure Auth = false
  85. ; Recommend you turn this on
  86.  
  87.  
  88. [A3W]
  89. Type = MySQL
  90. Name = a3wasteland
  91. Username = root
  92. Password = password
  93. IP = 127.0.0.1
  94. Port = 3306
  95. minSessions = 1
  96. ;maxSessions = 4
  97. idleTime = 60
  98.  
  99. compress = false
  100. ; Should only use this if MySQL server is external. Also only for MySQL
  101.  
  102. Secure Auth = false
  103. ; Recommend you turn this on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement