Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. // Server Port
  2. // default: 2302.
  3. serverport=2302;
  4.  
  5. // Steam Master Port
  6. // default: 2304.
  7. steamport=2304;
  8.  
  9. // Steam Query Port
  10. // default: 2303.
  11. steamqueryport=2303;
  12.  
  13.  
  14. // GENERAL SETTINGS
  15.  
  16. // Server Name
  17. hostname="Fractured Wasteland #1 | DLC | 5k Start | ATMs | PLAYER SAVING | Supports Mods";
  18. //hostname="GameTrackerClaimServer";
  19.  
  20. // Server Password
  21. //password="FRACU";
  22.  
  23. // Admin Password
  24. passwordAdmin="d0lph1ru51988";
  25.  
  26. // Server Slots
  27. maxPlayers = 71;
  28.  
  29. //Fix for Main config
  30. allowedFilePatching = 1;
  31.  
  32. // Logfile
  33. logFile = "arma3server.log";
  34.  
  35. // Minimum Required Client Build
  36. //requiredBuild = 95691
  37.  
  38. // Message of the Day (MOTD)
  39. motd[]={
  40. "Welcome to Fractured Gaming",
  41. "TS3 Server: ts.fractured-gaming.com",
  42. "Web: www.fractured-gaming.com"
  43. };
  44.  
  45. // MOTD Interval (Seconds)
  46. motdInterval = 30;
  47.  
  48. // VOTING
  49. allowedVoteCmds[] = {
  50. {"missions", false, false},
  51. {"mission", false, false},
  52. {"admin", false, false},
  53. {"kick", false, true, 0.5},
  54. {"restart", false, false},
  55. {"reassign", false, false}
  56. };
  57.  
  58. allowedVotedAdminCmds[] = {
  59. {"mission", false, false},
  60. {"missions", false, false},
  61. {"restart", true, true},
  62. {"reassign", true, true},
  63. {"kick", true, true}
  64. };
  65.  
  66. // Server Mission Start
  67. // minimum number of clients before server starts mission
  68. voteMissionPlayers = 1;
  69.  
  70. // Accepted Vote Threshold
  71. // 0.33 = 33% clients.
  72. voteThreshold = 0.33;
  73.  
  74. // INGAME SETTINGS
  75.  
  76. // Disable Voice over Net (VoN)
  77. // 0 = voice enabled.
  78. // 1 = voice disabled.
  79. disableVoN = 0;
  80.  
  81. // VoN Codec Quality
  82. // 0-10 = 8kHz (narrowband).
  83. // 11-20 = 16kHz (wideband).
  84. // 21-30 = 32kHz (ultrawideband).
  85. vonCodecQuality = 3;
  86.  
  87. //Persistent Battlefield
  88. // 0 = disable.
  89. // 1 = enable.
  90. persistent = 1;
  91.  
  92. // Time Stamp Format
  93. // none, short, full
  94. timeStampFormat = "short";
  95.  
  96.  
  97. // SERVER SECURITY/ANTI HACK
  98.  
  99. // Verify Signitures for Client Addons
  100. // 0 = off.
  101. // 1 = weak protection (depricated).
  102. // 2 = full protection.
  103. verifySignatures = 2;
  104.  
  105. // Secure Player ID
  106. // 1 = Server warning message.
  107. // 2 = Kick client.
  108. requiredSecureId = 2;
  109.  
  110. // Kick Duplicate Player IDs
  111. kickDuplicate = 1;
  112.  
  113. // BattlEye Anti-Cheat
  114. // 0 = disable
  115. // 1 = enable
  116. BattlEye = 1;
  117.  
  118. // Headless Client
  119. headlessClients[]={"127.0.0.1"};
  120. localClient[]={127.0.0.1};
  121.  
  122. // Allowed File Extentions
  123. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  124. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  125. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  126.  
  127. // SCRIPTING ISSUES
  128. onUserConnected = ""; //
  129. onUserDisconnected = ""; //
  130. doubleIdDetected = ""; //
  131.  
  132. // SIGNATURE VERIFICATION
  133. // kick = kick (_this select 0)
  134. // ban = ban (_this select 0)
  135. onUnsignedData = "kick (_this select 0)";
  136. onHackedData = "kick (_this select 0)";
  137. onDifferentData = "";
  138.  
  139. // MISSION SETTINGS
  140. class Missions
  141. {
  142. class A3W
  143. {
  144. template = "Frac_v1.3.Stratis";
  145.  
  146. difficulty = "Custom";
  147. };
  148. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement