Guest User

arma3server.server.cfg

a guest
Feb 21st, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 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 = "Grosse Saucisse";
  18.  
  19. // Server password - for private servers.
  20. password = "[REDACTED]";
  21.  
  22. // Admin Password
  23. passwordAdmin = "[REDACTED]";
  24.  
  25. // Auto-admin
  26. admins[] = {"[REDACTED],[REDACTED]"};
  27.  
  28. // Server Slots
  29. maxPlayers = 32;
  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 = 30;
  46.  
  47.  
  48. // VOTING
  49.  
  50. // Server Mission Start
  51. // minimum number of clients before server starts mission
  52. voteMissionPlayers = 1;
  53.  
  54. // Accepted Vote Threshold
  55. // 0.33 = 33% clients.
  56. voteThreshold = 0.33;
  57.  
  58. // INGAME SETTINGS
  59.  
  60. // Disable Voice over Net (VoN)
  61. // 0 = voice enabled.
  62. // 1 = voice disabled.
  63. disableVoN = 0;
  64.  
  65. // VoN Codec Quality
  66. // 0-10 = 8kHz (narrowband).
  67. // 11-20 = 16kHz (wideband).
  68. // 21-30 = 32kHz (ultrawideband).
  69. vonCodecQuality = 3;
  70.  
  71. // Persistent Battlefield
  72. // 0 = disable.
  73. // 1 = enable.
  74. persistent = 1;
  75.  
  76. // Time Stamp Format
  77. // none, short, full
  78. timeStampFormat = "short";
  79.  
  80. // Server Statistics
  81. // Set this to 0 to opt-out! More info: https://community.bistudio.com/wiki/Arma_3_Analytics
  82. statisticsEnabled = 1;
  83.  
  84. // SERVER SECURITY/ANTI HACK
  85.  
  86. // Verify Signitures for Client Addons
  87. // 0 = off.
  88. // 1 = weak protection (depricated).
  89. // 2 = full protection.
  90. verifySignatures = 2;
  91.  
  92. // Secure Player ID
  93. // 1 = Server warning message.
  94. // 2 = Kick client.
  95. requiredSecureId = 2;
  96.  
  97. // Kick Duplicate Player IDs
  98. kickDuplicate = 1;
  99.  
  100. // BattlEye Anti-Cheat
  101. // 0 = disable
  102. // 1 = enable
  103. BattlEye = 1;
  104.  
  105. // Allowed File Extentions
  106. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  107. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  108. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  109.  
  110. // SCRIPTING ISSUES
  111. onUserConnected = "";
  112. onUserDisconnected = "";
  113. doubleIdDetected = "";
  114.  
  115. // SIGNATURE VERIFICATION
  116. // kick = kick (_this select 0)
  117. // ban = ban (_this select 0)
  118. onUnsignedData = "kick (_this select 0)";
  119. onHackedData = "kick (_this select 0)";
  120. onDifferentData = "";
  121.  
  122. // HEADLESS CLIENT SUPPORT
  123. // specify ip-adresses of allowed headless clients
  124. // if more than one:
  125. // headlessClients[] = {"127.0.0.1", "192.168.0.1"};
  126. // localClient[] = {"127.0.0.1", "192.168.0.1"};
  127. headlessClients[] = {"127.0.0.1"};
  128. localClient[] = {"127.0.0.1"};
  129. battleyeLicense = 1;
  130.  
  131. class Missions
  132. {
  133. class BootcampAltis
  134. {
  135. template="MP_Bootcamp_01.Altis";
  136. };
  137. };
  138.  
Add Comment
Please, Sign In to add comment