Advertisement
Guest User

Untitled

a guest
Jul 13th, 2016
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. // Password for private servers. Uncomment this if you wish to run a private server
  2. // password = "XXXXXXXXX";
  3.  
  4. /*
  5. * Password to protect admin access
  6. * type: #login mypassword
  7. * in ingame client chatbox to login as admin
  8. * type: #missions
  9. * in ingame client chatbox to display the mission list
  10. */
  11. passwordAdmin = "XXXXXXXXXX";
  12.  
  13. // The name of the server that shall be displayed in the public server list
  14. hostname="509th Parachute Infantry Regiment | Public Iron Front Server";
  15.  
  16. /*
  17. * Message of the day. It can be several lines, separated by comma
  18. * empty messages "" will not be displayed at all but are only for increasing the interval
  19. */
  20. motd[]=
  21. {};
  22.  
  23. // Time interval (in seconds) between each message of the day
  24. motdInterval=5;
  25.  
  26. /*
  27. * 25% or more players need to vote for mission to become effective
  28. * set to 1.5 to turn off missions voting
  29. */
  30. voteThreshold=0.25;
  31.  
  32. /*
  33. * Maximum amount of server slots
  34. * server will always display 64 slots if maxPlayers is >64 and server is empty
  35. */
  36. maxPlayers=64;
  37.  
  38. /*
  39. * Gamespy reporting url for public server list inclusion
  40. * use 127.0.0.1 for LAN server
  41. */
  42. //reportingIP="arma3pc.master.gamespy.com";
  43.  
  44. /*
  45. * If specified player connects/disconnects and player id are written to file.
  46. * log file is persistant and appends data on server restart.
  47. */
  48. logfile="myserver.log";
  49.  
  50. /*
  51. * Specifies the mission rotation and related difficulty settings.
  52. * leave blank i.e class Missions {};
  53. * to enable player's selection from mission list & difficulty settings
  54. * (voted on if no admin logged in)
  55. */
  56.  
  57. // MISSIONS CYCLE (see below)
  58. class Missions
  59. {};
  60.  
  61. // If class missions is blank start voting when 1 players connect.
  62. voteMissionPlayers=1;
  63.  
  64. // Do not allow players with duplicate ids to connect
  65. kickduplicate=1;
  66.  
  67. // If set to 1 players must use exactly the same -mod= startup parameter as the server.
  68. equalModRequired=0;
  69.  
  70. // If set to 1, Voice over Net will not be available
  71. disableVoN=1;
  72.  
  73. /*
  74. * Quality from 1 to 10
  75. * refer to:
  76. * http://community.bistudio.com/wiki/ArmA:_Multiplayer#VOIP_support
  77. * for codec info. 7 is the best.
  78. */
  79. vonCodecQuality=7;
  80.  
  81.  
  82. /*
  83. * Set the timestamp format used on each report line in server-side RPT file.
  84. * possible values are:
  85. * none (default), short & full
  86. */
  87. timeStampFormat=full;
  88.  
  89. /*
  90. * Enables persistent battlefield
  91. * dependent on the mission specifiying persistence, otherwise has no effect.
  92. * missions must contain either instant respawn or base respawn options located in the missions description.ext file
  93. */
  94. persistent=1;
  95.  
  96. /*
  97. * Enables signature verification for addons
  98. * this will prevent pbo hacks by only allowing pbos that pass servers public key checks
  99. */
  100. verifySignatures=0;
  101.  
  102. /*
  103. * Enables BattlEye.
  104. * You can find more information on BattlEye at http://community.bistudio.com/wiki/BattlEye
  105. * BattlEye also has rcon support that you can enable by adding a line like this to
  106. * BattlEye/beserver.cfg:
  107. *
  108. RConPassword XXXXXXXXXXX
  109. *
  110. */
  111. BattlEye=1;
  112.  
  113. // SIGNATURE VERIFICATION
  114. onUnsignedData = "kick (_this select 0)";
  115. onHackedData = "kick (_this select 0)";
  116. onDifferentData = "";
  117.  
  118. // Signature timeout fix
  119. regularcheck="{}";
  120.  
  121. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  122. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  123. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement