TaktischerSpeck

Arma3 Server Cfg

Nov 27th, 2018
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 5.54 KB | None | 0 0
  1. /*
  2. ################## Arma 3 Servereinstellungen ###################
  3. ### EDIT: Andre Reinhardt (Nox) ###
  4. ### WEB: native-network.net ###
  5. ### QUELLE: Bohemia Interactive Studios ###
  6. ### Die bereits vorhandenen Einstellungen sind lediglich eine ###
  7. ### Empfehlung von uns, können jedoch verändert werden ###
  8. #################################################################
  9. */
  10. steamPort = 8766;
  11. steamQueryPort = 27016;
  12. // ███████████████████████████████████████████████████████████████████████
  13. // █████████████████████████ GRUNDEINSTELLUNGEN ██████████████████████████
  14. // ███████████████████████████████████████████████████████████████████████
  15. hostname = "Mein Altis Life Server | www.native-network.net | Rootserver Tutorial von Nox :)";
  16. password = "123"; //Bei keinem Passwort einfach leer lassen...
  17. passwordAdmin = "DEIN ADMIN PASSWORT";
  18. logFile = "arma3server.log";
  19. verifySignatures = 2; // Verhindert dass Spieler welche unbekannte Mods verwenden deinen Server betreten und hält so eine Menge Hacker fern. Standart: 2
  20. equalModRequired = 0; // Prevent players who don't have the exact same mods as the server from joining (best kept at 0)
  21. requiredSecureId = 2; // was used to define type of secureID
  22. maxPlayers = 64; // Slotzahl deines Servers. Empfohlen: 64
  23. kickDuplicate = 1; // Each player normally has its own unique ID. If set to 1, players with an ID that is identical to another player will be kicked
  24. BattlEye = 1; // BattlEye Ein- oder Abschalten. 1 = Eingeschaltet | 0 = Ausgeschaltet (Nicht empfohlen!)
  25. motd[] =
  26. {
  27.  "Willkommen auf meinem Server! :)",
  28.  "Besuch unsere Homepage auf www.deinehomepage.de :)"
  29. };
  30. motdInterval = 30; // Time interval (in seconds) between each message
  31. // ███████████████████████████████████████████████████████████████████████
  32. // ███████████████████████ MISSIONSEINSTELLUNGEN █████████████████████████
  33. // ███████████████████████████████████████████████████████████████████████
  34. voteMissionPlayers = 1; // Tells the server how many people must connect before displaying the mission selection screen, if you have not already selected a mission in this config
  35. voteThreshold = 2; // Percentage (0.00 to 1.00) of players needed to vote for something, for example an admin or a new mission, to become effective. Set to 9999 to prevent people from voting random players as admins.
  36. class Missions
  37. {
  38. class Mission1
  39.  {
  40. template="Altis_Life.Altis";
  41. difficulty="Regular";
  42.  };
  43. };
  44. // ███████████████████████████████████████████████████████████████████████
  45. // █████████████████████ ERWEITERTE EINSTELLUNGEN ████████████████████████
  46. // ███████████████████████████████████████████████████████████████████████
  47. disableVoN = 0; // If set to 1, voice chat will be disabled
  48. vonCodecQuality = 10; // Supports range 1-30; 8kHz is 0-10 (narrowband), 16kHz is 11-20 (wideband), 32kHz is 21-30 (ultrawideband); higher = better sound quality
  49. persistent = 1; // If set to 1, missions will continue to run after all players have disconnected
  50. timeStampFormat = "short"; // Set the timestamp format used on each line of the server RPT log file. Possible values are "none" (default), "short", "full".
  51. allowedVoteCmds[] = {}; //Deaktiviert ALLE Votefunktion, solange in den Klammern keine Funktionen angegeben sind.
  52. 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)
  53. 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)
  54. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"}; // only allow files with those extensions to be loaded via HTMLLoad command (since Arma 3 build 1.27.126715)
  55. onUserConnected = ""; // command to run when a player connects
  56. onUserDisconnected = ""; // command to run when a player disconnects
  57. doubleIdDetected = ""; // command to run if a player has the same ID as another player in the server
  58. onUnsignedData = "kick (_this select 0)"; // command to run if a player has unsigned data
  59. onHackedData = "kick (_this select 0)"; // command to run if a player has data with invalid signatures
  60. onDifferentData = ""; // command to run if a player has modified data
Advertisement
Add Comment
Please, Sign In to add comment