Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. // GLOBAL SETTINGS
  2. hostname = "[FR] Altis Life | Crazy Life | Public Slot |";
  3. password = "";
  4. passwordAdmin = "****";
  5. reportingIP = "arma3pc.master.gamespy.com";
  6. logFile = "server_console.log";
  7. verifySignatures = 1;
  8. BattlEye = 1;
  9.  
  10. // WELCOME MESSAGE ("message of the day")
  11. // It can be several lines, separated by comma
  12. // Empty messages "" will not be displayed at all but are only for increasing the interval
  13.  
  14. motd[] = {
  15. "Bienvenue sur [FR] Crazy Life",
  16. "TeamSpek 3 : ts.crazylocation.ovh",
  17. "Site web : http://crazycommunaute.esy.es/",
  18. "Forum : http://crazycommunaute.esy.es/forum",
  19. };
  20. motdInterval = 5; // Time interval (in seconds) between each message
  21.  
  22. // JOINING RULES
  23. maxPlayers = 32; // Maximum amount of players. Civilians and watchers, beholder, bystanders and so on also count as player.
  24.  
  25. // VOTING
  26. //voteMissionPlayers = 1; // Tells the server how many people must connect so that it displays the mission selection screen.
  27. //voteThreshold = 2; // 33% or more players need to vote for something, for example an admin or a new map, to become effective
  28. //voteMissionPlayers = 0;
  29.  
  30. // INGAME SETTINGS
  31. disableVoN = 0; // If set to 1, Voice over Net will not be available
  32. vonCodecQuality = 8; // Quality from 1 to 10
  33. persistent = 1; // If 1, missions still run on even after the last player disconnected.
  34.  
  35. // MOD ISSUES
  36. kickDuplicate = 1;
  37. equalModRequired = 0;
  38. requiredSecureId = 2;
  39. timeStampFormat = "short";
  40.  
  41. // SCRIPTING ISSUES
  42. onUserConnected = "";
  43. onUserDisconnected = "";
  44. doubleIdDetected = "";
  45.  
  46. // SIGNATURE VERIFICATION
  47. onUnsignedData = "kick (_this select 0)"; // unsigned data detected
  48. onHackedData = "kick (_this select 0)"; //"ban (_this select 0)"; // tampering of the signature detected
  49. onDifferentData = "";
  50.  
  51. // STEAM SETTINGS
  52. steamPort = 9566;
  53. steamQueryPort = 27816;
  54.  
  55.  
  56. // MISSIONS CYCLE (see below) We've already added wasteland for you.
  57. class Missions
  58. {
  59. class Wasteland
  60. {
  61. template="Altis_Life.Altis";
  62. difficulty="Regular";
  63. };
  64. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement