Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. hostname = "Tembelan National Defense Force";
  2. password = "";
  3. passwordAdmin = "nou";
  4. serverCommandPassword = "nou;
  5.  
  6. logFile = "server_console.log";
  7.  
  8.  
  9. motd[] = { };
  10. motdInterval = 5;
  11.  
  12.  
  13. maxPlayers = 16;
  14. kickDuplicate = 1;
  15. verifySignatures = 2;
  16. allowedFilePatching = 0;
  17. //requiredBuild = 12345;
  18.  
  19. loopback = 0;
  20. upnp = 0;
  21.  
  22.  
  23. admins[] = { };
  24. headlessClients[] = { };
  25. localClient[] = { };
  26.  
  27. voteMissionPlayers = 1;
  28. voteThreshold = 0.33;
  29.  
  30.  
  31. forceRotorLibSimulation = 0;
  32. disableVoN = 1;
  33. vonCodec = 0;
  34. vonCodecQuality = 0;
  35. persistent = 0;
  36. timeStampFormat = "none";
  37. BattlEye = 1;
  38. drawingInMap = 1;
  39. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; //only allow files with those extensions to be loaded via loadFile command (since Arma 3 build 1.19.124216)
  40. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; //only allow files with those extensions to be loaded via preprocessFile/preprocessFileLineNumber commands (since Arma 3 build 1.19.124323)
  41. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  42. //allowedHTMLLoadURIs = {};
  43. disconnectTimeout = 90;
  44. forcedDifficulty = "Custom";
  45.  
  46.  
  47. onUserConnected = "";
  48. onUserDisconnected = "";
  49. doubleIdDetected = "";
  50.  
  51. onUnsignedData = "kick (_this select 0)";
  52. onHackedData = "kick (_this select 0)";
  53. onDifferentData = "";
  54.  
  55. missionWhitelist[] = {
  56. "MP_COOP_m04.Stratis",
  57. "MP_COOP_m05.Altis",
  58. "MP_COOP_m06.Altis",
  59. "MP_COOP_m07.Altis",
  60. "MP_ZGM_m11.Altis",
  61. "MP_ZGM_m11_EAST.Altis",
  62. "MP_ZGM_m11_GUER.Altis",
  63. "MP_ZGM_m11_WEST.Altis",
  64. "MP_ZGM_m12.Stratis",
  65. "MP_ZGM_m12_EAST.Stratis",
  66. "MP_ZGM_m12_GUER.Stratis",
  67. "MP_ZGM_m12_WEST.Stratis",
  68. "MP_ZSC_m10.Altis",
  69. "MP_ZGM_m13.VR",
  70. "MP_ZGM_m13_EAST.VR",
  71. "MP_ZGM_m13_GUER.VR",
  72. "MP_ZGM_m13_WEST.VR",
  73. "MP_ZR_8_Karts01.Altis",
  74. "MP_ZR_8_Karts02.Stratis",
  75. "MP_bootcamp_01.VR",
  76. "MP_Bootcamp_01.Altis",
  77. };
  78.  
  79. class DifficultyPresets
  80. {
  81. class CustomDifficulty
  82. {
  83. class Options
  84. {
  85. groupIndicators=0;
  86. friendlyTags=0;
  87. enemyTags=0;
  88. detectedMines=0;
  89. commands=0;
  90. waypoints=1;
  91. weaponInfo=2;
  92. stanceIndicator=2;
  93. reducedDamage=0;
  94. staminaBar=1;
  95. weaponCrosshair=0;
  96. visionAid=0;
  97. thirdPersonView=0;
  98. cameraShake=0;
  99. scoreTable=1;
  100. deathMessages=0;
  101. vonID=1;
  102. mapContent=1;
  103. autoReport=1;
  104. multipleSaves=0;
  105. };
  106. aiLevelPreset=3;
  107. };
  108. class CustomAILevel
  109. {
  110. skillAI=0.5;
  111. precisionAI=0.5;
  112. };
  113. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement