Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. //
  2. // PLEASE EDIT VIA THE GAME PANEL
  3. //
  4.  
  5. //
  6. // Source: https://community.bistudio.com/wiki/server.cfg
  7. //
  8.  
  9. // GLOBAL SETTINGS
  10. hostname = "Serveur Test Sky RP";
  11. password = "2309416";
  12. passwordAdmin = "2309416";
  13. serverCommandPassword = "admintrump";
  14.  
  15. // LOGGING
  16. logFile = "server_console.log";
  17.  
  18. // WELCOME MESSAGE
  19. motd[] = {
  20. "",
  21. "",
  22. "",
  23. "",
  24. "",
  25. "",
  26. "",
  27. "",
  28. "",
  29. ""
  30. };
  31. motdInterval = 5;
  32.  
  33. // JOINING RULES
  34. maxPlayers = 6;
  35. kickDuplicate = 1;
  36. verifySignatures = 2;
  37. allowedFilePatching = 0;
  38.  
  39. // VOTING
  40. voteMissionPlayers = 1;
  41. voteThreshold = 0.33;
  42. allowedVoteCmds[] = {};
  43.  
  44. // INGAME SETTINGS
  45. disableVoN = 0;
  46. vonCodec = 1;
  47. vonCodecQuality = 30;
  48. persistent = 1;
  49. timeStampFormat = "short";
  50. BattlEye = 1;
  51. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  52. allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"};
  53. allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
  54. disconnectTimeout = 90;
  55.  
  56. // SCRIPTING ISSUES
  57. onUserConnected = "";
  58. onUserDisconnected = "";
  59. doubleIdDetected = "";
  60.  
  61. // SIGNATURE VERIFICATION
  62. onUnsignedData = "kick (_this select 0)";
  63. onHackedData = "kick (_this select 0)";
  64. onDifferentData = "";
  65.  
  66. // MISSIONS CYCLE
  67. class Missions
  68. {
  69. class Mission1
  70. {
  71. template = "Altis_Life.Altis";
  72. difficulty = "Regular";
  73. };
  74. };
  75.  
  76. missionWhitelist[] = {};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement