Advertisement
Guest User

Arma3 server config

a guest
Apr 6th, 2015
795
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.89 KB | None | 0 0
  1. # This config file is only provided as an example file.
  2. # Edit it to sute your needs.
  3. # For more info on how to edit this file. use the Readme.txt file or visit http://www.ibattle.org/install-and-configure
  4.  
  5.  
  6. #--------------------------------------------------------------------------------------------------------
  7. [Bec]
  8. #--------------------------------------------------------------------------------------------------------
  9. 127.0.0.1 ibattle.org
  10. 127.0.0.1 www.ibattle.org
  11.  
  12. # Set the ip to your server. normally 127.0.0.1 will be fine.
  13. Ip = 127.0.0.1
  14.  
  15.  
  16. # Set the port to the server. default port is 2302
  17. Port = 2352
  18.  
  19.  
  20. # Set the path to the BattlEye directory that is currently in use by the server.
  21. BePath = D:\Arma3Server\SC\BattlEye
  22.  
  23.  
  24. # Set the path to your Admins.xml file containing your admins.
  25. Admins = D:\Arma3Server\config\Admins.xml
  26.  
  27.  
  28. # Set the path to your Commands.xml file.
  29. Commands = D:\Arma3Server\config\Commands.xml
  30.  
  31.  
  32. #--------------------------------------------------------------------------------------------------------
  33. [Misc]
  34. #--------------------------------------------------------------------------------------------------------
  35.  
  36. # Auto run loadbans when ban file(s) changes.
  37. # 1 or True will turn it on.
  38. # 0 or False will turn it off.
  39. # If this parameter is not defined it will use False as default.
  40.  
  41. AutoLoadBans = True
  42.  
  43. # Set which type of hacks that will be added to your banlist.
  44. # 0 = none. 1 = GameHack. 2 = Battleye Hack. 3 = both GameHack & Battleye Hack.
  45. # value 3 is set as default if this parameter is not defined.
  46. Ban = 3
  47.  
  48.  
  49. # Set the names of your custom ban files, Separate each file with "," (comma): file1.txt, banfile2.txt, newfile.txt
  50. # If you do not use any custom ban files. delete this option or leave this option commented.
  51. # This option will check ban files for changes and automatic do a loadbans file when a file gets changed
  52. # Do not specify the default bans.txt file here.
  53. BeCustomBanFiles = Bans1.txt, file2.txt, file3.txt
  54.  
  55.  
  56. # Set the height & width of Becs console window
  57. ConsoleHeight = 45
  58. ConsoleWidth = 165
  59.  
  60.  
  61. # Only allow english chars.
  62. AsciiNickOnly = False
  63.  
  64.  
  65. # Only allow english chars to be typed on the chat. Note, Warnings must be enabled. 0 or more.
  66. AsciiChatOnly = True
  67.  
  68.  
  69. # If AsciiChatOnly is set True. you can define none english chars that will be accepted.
  70. # You separate each char with a , "note you need to define lower and upper case of the chars."
  71. IgnoreChatChars = €,£,æ,Æ,ø,Ø,å,Å,ö,ä,ü,ß
  72.  
  73.  
  74. # Set the amount of warnings a player will get before kicked. -1 is disabled. 0 instant kick
  75. # 1 == one warning on a bad word. next bad word results in kick
  76. Warnings = 3
  77.  
  78.  
  79. # Kick players who has listed chars in their name when they connect
  80. DisallowPlayerNameChars = []{}()0123456789
  81.  
  82.  
  83. # Min length, kicks players who has to short name when they connect.
  84. MinPlayerNameLength = 3
  85.  
  86.  
  87. # Max length, kicks players who has to long name when they connect.
  88. MaxPlayerNameLength = 16
  89.  
  90.  
  91. # Set the name of your Arma3server.exe if it has been renamed from arma3server.exe to something else!
  92. # if the exe has its original name. comment it out.
  93. # DO NOT SET FULL PATH TO THE EXE FILE
  94. #ServerExeName = NewArmaExeName.exe
  95.  
  96.  
  97. # Set path to the file containing a list of bad words. Note, Warnings must be enabled. 0 or more.
  98. WordFilterFile = D:\Arma3Server\config\BadWords.txt
  99.  
  100.  
  101. # Set the path to the file containing whitelisted guids.
  102. # WhiteListFile = WhiteList.txt
  103.  
  104.  
  105. # Set custom whitelist kick message. Text must be in ascii letters. MAX 58 CHARS. BE only does ascii on messages
  106. WhiteListKickMsg = You are not whitelisted on this server.
  107.  
  108.  
  109. # Kick people with offensive names
  110. NickFilterFile = D:\Arma3Server\config\BadNames.txt
  111.  
  112.  
  113. # Set the path to the Scheduler.xml file.
  114. Scheduler = D:\Arma3Server\config\Scheduler.xml
  115.  
  116.  
  117. # Kick people who are idleing in the lobby, kick will happen after given time, Min time is 90 sec. use 0 to disable this function.
  118. KickLobbyIdlers = 0
  119.  
  120.  
  121. # If enabled. Bec will create separate chat files for each channel along with the main file.
  122. #ChatChannelFiles = false
  123.  
  124. # Set the amount of Normal players who can connect. Set it to -1 to disable it.
  125. # If set to 0 it means only players who are listed in the Admins.xml, (or whatever you call it) will be able to connect to the server.
  126. # Quick Example 1: server can holed 50 players. and you want to reserve 5 slots for admins. then set SlotLimit to 45.
  127. # Quick Example 2: server can holed 50 players. and you want to reserve 5 slots for admins and 5 slots for friends. then set SlotLimit to 40,
  128. # AND edit your admins.xml. ADD in all your frineds guid and remaining data, put them in group example 100. or whatever you feel likt.
  129. # by using this method you can give some of your friends some access to some commands if you like or none.
  130. # in general this is works like .Whitelisting X player slots for admins and friends, while leaving the remaining Y slots for public.
  131. SlotLimit = -1
  132.  
  133. # Set the message people will get when they try to connect and is not whitelisted. Text must be in ascii letters.
  134. SlotLimitKickMsg = The Server has reached its player limit.
  135.  
  136.  
  137. # The amount of time Bec will wait for the server to start up.
  138. Timeout = 30
  139.  
  140.  
  141. #--------------------------------------------------------------------------------------------------------
  142. [Reporter]
  143. #--------------------------------------------------------------------------------------------------------
  144. # Reporter account. Fill in the username and password for your reporter account.
  145. # GameHacks, BattlEye Hacks will be reported to a database. all players who connect will also be checked against this database.
  146.  
  147. # Set the Username for your account
  148. #User = alfred
  149.  
  150.  
  151. # Set the Password for your account
  152. #Password = 123456
  153.  
  154.  
  155. #--------------------------------------------------------------------------------------------------------
  156. [ChatRestriction]
  157. #--------------------------------------------------------------------------------------------------------
  158. # Set max amount of chat lines a player is allowed to send for each channel.
  159. # Going passed the number will result in kick. -1 is disabled, 0 instant kick.
  160. # If the number is higher than 0 players will be sent warnings.
  161.  
  162. Lobby = 30
  163. Global = 5
  164. Side = 7
  165. Group = 9
  166. Vehicle = 11
  167. Command = 13
  168. Commander = 15
  169. Direct = 17
  170.  
  171.  
  172. #--------------------------------------------------------------------------------------------------------
  173. [ChatSpam]
  174. #--------------------------------------------------------------------------------------------------------
  175.  
  176. # Set max amount of chat lines per channel allowed within given time frame.
  177. # Set the values to 0 to disable this function(s)
  178.  
  179. # Quick Example:
  180. # Lobby = 5
  181. # Lobby_Time_Lower = 10
  182. # Lobby_Time_Upper = 15
  183.  
  184. # If the time between each new chatlines from a player is less than CHANNEL_Time_Lower the spam counter increases by + 1.
  185. # Consider the CHANNEL (Lobby) as the spam counter.
  186. # When a player has (CHANNEL - 1) in spam counting. a warning will be sent to whom it may concern.
  187. # If the time between each new chatline from the player is Greater than CHANNEL_Time_Lower and Less than CHANNEL_Time_Upper the spam counter stay as it is.
  188. # If the time since the last chatline is greater then CHANNEL_Time_Upper the spam counter is reset to 1.
  189. # To get optimal result play around a bit with the values on your server.
  190.  
  191. Lobby = 0
  192. Lobby_Time_Lower = 0
  193. Lobby_Time_Upper = 0
  194.  
  195. Global = 0
  196. Global_Time_Lower = 0
  197. Global_Time_Upper = 0
  198.  
  199. Side = 0
  200. Side_Time_Lower = 0
  201. Side_Time_Upper = 0
  202.  
  203. Group = 2
  204. Group_Time_Lower = 1
  205. Group_Time_Upper = 3
  206.  
  207. Vehicle = 0
  208. Vehicle_Time_Lower = 0
  209. Vehicle_Time_Upper = 0
  210.  
  211. Command = 0
  212. Command_Time_Lower = 0
  213. Command_Time_Upper = 0
  214.  
  215. Commander = 0
  216. Commander_Time_Lower = 0
  217. Commander_Time_Upper = 0
  218.  
  219. Direct = 0
  220. Direct_Time_Lower = 0
  221. Direct_Time_Upper = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement