Advertisement
Guest User

config

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