lgsm-default.server.cfg 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. // ArmA 3 Server Config File
  2. //
  3. // More info about parameters:
  4. // https://community.bistudio.com/wiki/server.cfg
  5. // PORTS
  6. // Server Port
  7. // default: 2302.
  8. serverport=2302;
  9. // Steam Master Port
  10. // default: 2304.
  11. steamport=2304;
  12. // Steam Query Port
  13. // default: 2303.
  14. steamqueryport=2303;
  15. // GENERAL SETTINGS
  16. // Server Name
  17. hostname = "arma3server";
  18. // Server Password
  19. //password = "arma3pass";
  20. // Admin Password
  21. passwordAdmin = "arma3adminpass";
  22. // Server Slots
  23. maxPlayers = 32;
  24. // Logfile
  25. logFile = "arma3server.log";
  26. // Minimum Required Client Build
  27. //requiredBuild = 95691
  28. // Message of the Day (MOTD)
  29. motd[]={
  30. "Welcome to My Arma 3 Server",
  31. "TS3 Server: teamspeak.somewhere.com",
  32. "Web: www.example.com"
  33. };
  34. // MOTD Interval (Seconds)
  35. motdInterval = 30;
  36. // VOTING
  37. // Server Mission Start
  38. // minimum number of clients before server starts mission
  39. voteMissionPlayers = 1;
  40. // Accepted Vote Threshold
  41. // 0.33 = 33% clients.
  42. voteThreshold = 0.33;
  43. // INGAME SETTINGS
  44. // Disable Voice over Net (VoN)
  45. // 0 = voice enabled.
  46. // 1 = voice disabled.
  47. disableVoN = 0;
  48. // VoN Codec Quality
  49. // 0-10 = 8kHz (narrowband).
  50. // 11-20 = 16kHz (wideband).
  51. // 21-30 = 32kHz (ultrawideband).
  52. vonCodecQuality = 3;
  53. //Persistent Battlefield
  54. // 0 = disable.
  55. // 1 = enable.
  56. persistent = 1;
  57. // Time Stamp Format
  58. // none, short, full
  59. timeStampFormat = "short";
  60. // SERVER SECURITY/ANTI HACK
  61. // Verify Signitures for Client Addons
  62. // 0 = off.
  63. // 1 = weak protection (depricated).
  64. // 2 = full protection.
  65. verifySignatures = 2;
  66. // Secure Player ID
  67. // 1 = Server warning message.
  68. // 2 = Kick client.
  69. requiredSecureId = 2;
  70. // Kick Duplicate Player IDs
  71. kickDuplicate = 1;
  72. // BattlEye Anti-Cheat
  73. // 0 = disable
  74. // 1 = enable
  75. BattlEye = 1;
  76. // Allowed File Extentions
  77. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  78. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  79. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  80. // SCRIPTING ISSUES
  81. onUserConnected = ""; //
  82. onUserDisconnected = ""; //
  83. doubleIdDetected = ""; //
  84. // SIGNATURE VERIFICATION
  85. // kick = kick (_this select 0)
  86. // ban = ban (_this select 0)
  87. onUnsignedData = "kick (_this select 0)";
  88. onHackedData = "kick (_this select 0)";
  89. onDifferentData = "";