Guest User

Untitled

a guest
Jan 8th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. // ArmA 3 Server Config File
  2. //
  3. // More info about parameters:
  4. // https://community.bistudio.com/wiki/server.cfg
  5.  
  6.  
  7. // PORTS
  8. // please specify the serverport as a parameter in arma3server executable
  9. // it will automatically use the serverport including the next 3 for steam query & steam master.
  10. // the fourth port ist not documented in https://community.bistudio.com/wiki/Arma_3_Dedicated_Server#Port_Forwarding
  11. // Server Port
  12. // default: 2302.
  13. // serverport=2302;
  14.  
  15. // Steam Master Port
  16. // default: 2304.
  17. // steamport=2304;
  18.  
  19. // Steam Query Port
  20. // default: 2303.
  21. //steamqueryport=2303;
  22.  
  23.  
  24. // GENERAL SETTINGS
  25.  
  26. // Server Name
  27. hostname = "arma3server test";
  28.  
  29. // Server Password
  30. //password = "arma3pass";
  31.  
  32. // Admin Password
  33. passwordAdmin = "arma3adminpass";
  34.  
  35. // Server Slots
  36. maxPlayers = 32;
  37.  
  38. // Logfile
  39. logFile = "arma3server.log";
  40.  
  41. // Minimum Required Client Build
  42. //requiredBuild = 95691
  43.  
  44. // Message of the Day (MOTD)
  45. motd[]={
  46. "Welcome to My Arma 3 Server",
  47. "TS3 Server: teamspeak.somewhere.com",
  48. "Web: www.example.com"
  49. };
  50.  
  51. // MOTD Interval (Seconds)
  52. motdInterval = 30;
  53.  
  54.  
  55. // VOTING
  56.  
  57. // Server Mission Start
  58. // minimum number of clients before server starts mission
  59. voteMissionPlayers = 1;
  60.  
  61. // Accepted Vote Threshold
  62. // 0.33 = 33% clients.
  63. voteThreshold = 0.33;
  64.  
  65. // INGAME SETTINGS
  66.  
  67. // Disable Voice over Net (VoN)
  68. // 0 = voice enabled.
  69. // 1 = voice disabled.
  70. disableVoN = 0;
  71.  
  72. // VoN Codec Quality
  73. // 0-10 = 8kHz (narrowband).
  74. // 11-20 = 16kHz (wideband).
  75. // 21-30 = 32kHz (ultrawideband).
  76. vonCodecQuality = 3;
  77.  
  78. //Persistent Battlefield
  79. // 0 = disable.
  80. // 1 = enable.
  81. persistent = 1;
  82.  
  83. // Time Stamp Format
  84. // none, short, full
  85. timeStampFormat = "short";
  86.  
  87.  
  88. // SERVER SECURITY/ANTI HACK
  89.  
  90. // Verify Signitures for Client Addons
  91. // 0 = off.
  92. // 1 = weak protection (depricated).
  93. // 2 = full protection.
  94. verifySignatures = 2;
  95.  
  96. // Secure Player ID
  97. // 1 = Server warning message.
  98. // 2 = Kick client.
  99. requiredSecureId = 2;
  100.  
  101. // Kick Duplicate Player IDs
  102. kickDuplicate = 1;
  103.  
  104. // BattlEye Anti-Cheat
  105. // 0 = disable
  106. // 1 = enable
  107. BattlEye = 1;
  108.  
  109. // Allowed File Extentions
  110. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  111. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  112. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  113.  
  114. // SCRIPTING ISSUES
  115. onUserConnected = ""; //
  116. onUserDisconnected = ""; //
  117. doubleIdDetected = ""; //
  118.  
  119. // SIGNATURE VERIFICATION
  120. // kick = kick (_this select 0)
  121. // ban = ban (_this select 0)
  122. onUnsignedData = "kick (_this select 0)";
  123. onHackedData = "kick (_this select 0)";
  124. onDifferentData = "";
  125.  
  126. // MISSIONS CYCLE
  127. class Missions {
  128. class ARMA3 {
  129. template = Altis_Life.Altis;
  130. difficulty = "Regular";
  131. };
  132. };
  133.  
  134. // HEADLESS CLIENT SUPPORT
  135. // specify ip-adresses of allowed headless clients
  136. // if more than one:
  137. // headlessClients[]={"127.0.0.1", "192.168.0.1"};
  138. // localClient[]={"127.0.0.1", "192.168.0.1"};
  139. headlessClients[]={"127.0.0.1"};
  140. localClient[]={"127.0.0.1"};
  141. battleyeLicense=1;
Add Comment
Please, Sign In to add comment