Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. // ****************************************************************************
  2. // *
  3. // Arma 3 - server.cfg *
  4. // Version 060117 *
  5. // *
  6. // ****************************************************************************
  7.  
  8. // ArmA 3 Server Config File
  9. //
  10. // More info about parameters:
  11. // https://community.bistudio.com/wiki/server.cfg
  12.  
  13.  
  14. // GENERAL SETTINGS
  15.  
  16. // Hostname for server.
  17. hostname = "XXXX";
  18.  
  19. // Server password - for private servers.
  20. password = "XXXX";
  21.  
  22. // Admin Password
  23. passwordAdmin = "XXXX";
  24.  
  25. // Auto-admin
  26. //admins[] = {"<UID>"};
  27.  
  28. // Server Slots
  29. maxPlayers = 25;
  30.  
  31. // Logfile
  32. logFile = "arma3server.log";
  33.  
  34. // Minimum Required Client Build
  35. //requiredBuild = 95691
  36.  
  37. // Message of the Day (MOTD)
  38. motd[]={
  39. "Welcome to My Arma 3 Server",
  40. "TS3 Server: teamspeak.somewhere.com",
  41. "Web: www.example.com"
  42. };
  43.  
  44. // MOTD Interval (Seconds)
  45. motdInterval = 0;
  46.  
  47. // INGAME SETTINGS
  48.  
  49. // Disable Voice over Net (VoN)
  50. // 0 = voice enabled.
  51. // 1 = voice disabled.
  52. disableVoN = 0;
  53.  
  54. // VoN Codec Quality
  55. // 0-10 = 8kHz (narrowband).
  56. // 11-20 = 16kHz (wideband).
  57. // 21-30 = 32kHz (ultrawideband).
  58. vonCodecQuality = 5;
  59.  
  60. //Persistent Battlefield
  61. // 0 = disable.
  62. // 1 = enable.
  63. persistent = 1;
  64.  
  65. // Time Stamp Format
  66. // none, short, full
  67. timeStampFormat = "short";
  68.  
  69. // Server Statistics
  70. // Set this to 0 to opt-out! More info: https://community.bistudio.com/wiki/Arma_3_Analytics
  71. statisticsEnabled = 1;
  72.  
  73. // SERVER SECURITY/ANTI HACK
  74.  
  75. // Verify Signitures for Client Addons
  76. // 0 = off.
  77. // 1 = weak protection (depricated).
  78. // 2 = full protection.
  79. verifySignatures = 2;
  80.  
  81. // Secure Player ID
  82. // 1 = Server warning message.
  83. // 2 = Kick client.
  84. requiredSecureId = 2;
  85.  
  86. // Kick Duplicate Player IDs
  87. kickDuplicate = 1;
  88.  
  89. // BattlEye Anti-Cheat
  90. // 0 = disable
  91. // 1 = enable
  92. BattlEye = 1;
  93.  
  94. // Allowed File Extentions
  95. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  96. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  97. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  98.  
  99. // SCRIPTING ISSUES
  100. onUserConnected = ""; //
  101. onUserDisconnected = ""; //
  102. doubleIdDetected = ""; //
  103.  
  104. // SIGNATURE VERIFICATION
  105. // kick = kick (_this select 0)
  106. // ban = ban (_this select 0)
  107. onUnsignedData = "kick (_this select 0)";
  108. onHackedData = "kick (_this select 0)";
  109. onDifferentData = "";
  110.  
  111. // HEADLESS CLIENT SUPPORT
  112. // specify ip-adresses of allowed headless clients
  113. // if more than one:
  114. // headlessClients[]={"127.0.0.1", "192.168.0.1"};
  115. // localClient[]={"127.0.0.1", "192.168.0.1"};
  116. headlessClients[]={"127.0.0.1"};
  117. localClient[]={"127.0.0.1"};
  118. battleyeLicense=1;
  119.  
  120. class Missions {
  121. class ARMA3 {
  122. template = Altis_Life_XXXX0001.Altis;
  123. difficulty = "regular";
  124. };
  125. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement