Advertisement
HWS_Wolf

Server Config.cfg

Oct 29th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.59 KB | None | 0 0
  1. steamport=2302; //xxxx being the particular game server port
  2. steamqueryport=2303; // xxx1 being the particular game server port plus 1
  3. hostname                            = "HWS | TEST |)";
  4. password                            = "Entered";
  5. passwordAdmin                       = "Entered";
  6. serverCommandPassword               = "Entered";
  7. logFile                             = "server.log";
  8. verifySignatures                    = 1; // Do NOT use verifySignatures=2! It costs too many FPS
  9. BattlEye                            = 1;
  10. requiredBuild                       = 145977; // 1.94 stable
  11. allowedLoadFileExtensions[]         = {:};
  12. allowedPreprocessFileExtensions[]   = {"sqf"};
  13. allowedHTMLLoadExtensions[]         = {"html"};
  14. motdInterval                        = 5;
  15. maxPlayers                          = 100;
  16. voteMissionPlayers                  = 200;
  17. voteThreshold                       = 0;
  18. allowedVoteCmds[]                   = {};
  19. allowedVotedAdminCmds[]             = {};
  20. disableVoN                          = 0;
  21. vonCodecQuality                     = 30;
  22. persistent                          = 1;
  23. kickDuplicate                       = 1;
  24. equalModRequired                    = 0;
  25. kickClientsOnSlowNetwork            = 0;
  26. timeStampFormat                     = "short";
  27. onUserConnected                     = "";
  28. onUserDisconnected                  = "";
  29. doubleIdDetected                    = "";
  30. onUnsignedData                      = "kick (_this select 0)";
  31. onHackedData                        = "kick (_this select 0)";
  32. onDifferentData                     = "kick (_this select 0)";
  33. motd[]                              = {"Welcome to Arma 3 Exile Mod!", "www.exilemod.com", "Enjoy your stay!" };
  34.  
  35. class Missions
  36. {
  37.     class Exile
  38.     {
  39.         template = Exile.Altis;  // Exile.Namalsk, Exile.Altis, Exile.Tanoa, ExileEscape.Altis, ExileEscape.Tanoa
  40.  
  41.         // do NOT use custom difficulties!
  42.         // Use either ExileRegular or ExileHardcore
  43.         // or you will break Exile!
  44.         difficulty = "ExileRegular";
  45.     };
  46. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement