Advertisement
Guest User

Untitled

a guest
May 8th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. //
  2. // ---> server.cfg <---
  3. //
  4. // Config file generated by Arma 3 Server Config Generator (a3server.byjokese.com)
  5. //
  6. // Author: Ivan (By-Jokese) Exposito
  7. // a3server.byjokese.com
  8. //
  9. // LICENCE: https://github.com/byjokese/Arma-Server-Config-Generator/blob/master/LICENCE
  10. // FEEDBACK: https://github.com/byjokese/Arma-Server-Config-Generator/issues
  11. //
  12.  
  13. // GLOBAL SETTINGS
  14. hostname = "NarcosLife";
  15. password = "";
  16. passwordAdmin = "";
  17. serverCommandPassword = "";
  18.  
  19. logFile = "server_console.log";
  20.  
  21.  
  22. motd[] = { "Bienvenue sur mon serveur !"
  23. };
  24. motdInterval = 60;
  25.  
  26.  
  27. // JOINING RULES
  28. maxPlayers = 4;
  29. kickDuplicate = 1;
  30. verifySignatures = 2;
  31. allowedFilePatching = 0;
  32. //requiredBuild = 12345;
  33.  
  34. loopback = 0;
  35. upnp = 0;
  36.  
  37.  
  38. // Whitelists
  39. admins[] = { };
  40. headlessClients[] = { };
  41. localClient[] = { };
  42.  
  43. // VOTING
  44. voteMissionPlayers = 0;
  45. voteThreshold = 0.33;
  46.  
  47.  
  48. // INGAME SETTINGS
  49. forceRotorLibSimulation = 0;
  50. disableVoN = 0;
  51. vonCodec = 0;
  52. vonCodecQuality = 0;
  53. persistent = 1;
  54. timeStampFormat = "none";
  55. BattlEye = 1;
  56. drawingInMap = 1;
  57. 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)
  58. 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)
  59. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  60. //allowedHTMLLoadURIs = {};
  61. disconnectTimeout = 90;
  62. maxdesync = 150;
  63. maxping = 200;
  64. maxpacketloss = 50;
  65. forcedDifficulty = "Recruit";
  66.  
  67.  
  68. // SCRIPTING ISSUES
  69. onUserConnected = "";
  70. onUserDisconnected = "";
  71. doubleIdDetected = "";
  72.  
  73. // SIGNATURE VERIFICATION
  74. onUnsignedData = "kick (_this select 0)";
  75. onHackedData = "kick (_this select 0)";
  76. onDifferentData = "";
  77.  
  78.  
  79. // MISSIONS CYCLE
  80. class Missions {
  81. class MissionRotation1 {
  82. template = altis_life.altis;
  83. difficulty = "Recruit";
  84. class Params{};
  85. };
  86. };
  87.  
  88. // DIFICULTY
  89. class DifficultyPresets
  90. {
  91. class CustomDifficulty
  92. {
  93. class Options
  94. {
  95. groupIndicators=2;
  96. friendlyTags=0;
  97. enemyTags=0;
  98. detectedMines=0;
  99. commands=2;
  100. waypoints=2;
  101. weaponInfo=2;
  102. stanceIndicator=2;
  103. reducedDamage=0;
  104. staminaBar=0;
  105. weaponCrosshair=1;
  106. visionAid=0;
  107. thirdPersonView=1;
  108. cameraShake=0;
  109. scoreTable=0;
  110. deathMessages=1;
  111. vonID=1;
  112. mapContent=0;
  113. autoReport=0;
  114. multipleSaves=0;
  115. };
  116. aiLevelPreset=3;
  117. };
  118. class CustomAILevel
  119. {
  120. skillAI=0.5;
  121. precisionAI=0.5;
  122. };
  123. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement