Advertisement
Guest User

Untitled

a guest
May 8th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. //ArmA 3 Server Configuration File - Modified/Updated by ATCAG
  2.  
  3. // comments are written with "//" in front of them.
  4. // server.cfg
  5.  
  6. // GLOBAL SETTINGS
  7. hostname=""; //Public server name that appears in server browser
  8. password = "";
  9. passwordAdmin = "";
  10.  
  11. // Welcome message, two lines "," means 'new line'
  12. motd[]= {
  13. "",
  14. "",
  15. "",
  16. "*** Welcome! ***",
  17. "*** Join our TeamSpeak: ***",
  18. "*** ATCAG.TS.NFOSERVERS.COM ***",
  19. };
  20. motdInterval=3;
  21.  
  22.  
  23. // JOINING RULES
  24. checkfiles[]={"HWTL\dta\data3d.pbo","dta\data3d.pbo"};
  25. maxPlayers =4;
  26. kickduplicate=1;
  27. verifySignatures=0;
  28. equalModRequired = 0;
  29.  
  30.  
  31. // VOTING
  32. voteMissionPlayers=0;
  33. voteThreshold=0.33;
  34.  
  35.  
  36. // INGAME SETTINGS
  37. disableVoN=1;
  38. vonCodecQuality = 0;
  39. BattlEye = 1;
  40. timeStampFormat = "short";
  41. forceRotorLibSimulation = 0;
  42. persistent=1;
  43.  
  44.  
  45. // STEAM DO NOT EDIT THESE PORT LINES!!!
  46. steamport=8766;
  47. steamqueryport=2303;
  48.  
  49.  
  50. // Map rotation
  51. class Missions
  52. {
  53. class Mission1
  54. {
  55. template="altis_life.altis"; //Make sure the mission you want to set is located in the server's MPmissions folder!
  56. difficulty="Custom";
  57. };
  58. };
  59.  
  60. // DIFICULTY
  61. class DifficultyPresets
  62. {
  63. class CustomDifficulty
  64. {
  65. class Options
  66. {
  67. groupIndicators=1;
  68. friendlyTags=1;
  69. enemyTags=1;
  70. detectedMines=1;
  71. commands=1;
  72. waypoints=1;
  73. weaponInfo=2;
  74. stanceIndicator=2;
  75. reducedDamage=0;
  76. staminaBar=0;
  77. weaponCrosshair=1;
  78. visionAid=1;
  79. thirdPersonView=1;
  80. cameraShake=0;
  81. scoreTable=1;
  82. deathMessages=1;
  83. vonID=1;
  84. mapContent=0;
  85. autoReport=1;
  86. multipleSaves=1;
  87. };
  88. aiLevelPreset=3;
  89. };
  90. class CustomAILevel
  91. {
  92. skillAI=0.5;
  93. precisionAI=0.5;
  94. };
  95. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement