Advertisement
Guest User

init.sqf Manny

a guest
May 15th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. /*
  2. For DayZ Epoch
  3. Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz
  4. */
  5. startLoadingScreen ["","RscDisplayLoadCustom"];
  6. cutText ["","BLACK OUT"];
  7. enableSaving [false, false];
  8.  
  9. //REALLY IMPORTANT VALUES
  10. dayZ_instance = 11; //The instance
  11. dayzHiveRequest = [];
  12. initialized = false;
  13. dayz_previousID = 0;
  14.  
  15. //disable greeting menu
  16. player setVariable ["BIS_noCoreConversations", true];
  17. //disable radio messages to be heard and shown in the left lower corner of the screen
  18. enableRadio false;
  19. // May prevent "how are you civillian?" messages from NPC
  20. enableSentences false;
  21.  
  22. // DayZ Epoch config
  23. spawnShoremode = 1; // Default = 1 (on shore)
  24. spawnArea= 1500; // Default = 1500
  25.  
  26. MaxVehicleLimit = 300; // Default = 50
  27. MaxDynamicDebris = 500; // Default = 100
  28. dayz_MapArea = 14000; // Default = 10000
  29. dayz_maxLocalZombies = 30; // Default = 30
  30.  
  31. //Default Loadout
  32. DefaultMagazines = ["ItemBandage","ItemBandage","17Rnd_9x19_glock17","17Rnd_9x19_glock17","ItemMorphine","ItemPainkiller","ItemWaterbottleBoiled","FoodSteakCooked"];
  33. DefaultWeapons = ["glock17_EP1","ItemFlashlightRed","ItemHatchet","ItemMap","ItemCompass","ItemToolbox"];
  34. DefaultBackpack = "DZ_ALICE_Pack_EP1";
  35. DefaultBackpackWeapon = "";
  36.  
  37. dayz_paraSpawn = true;
  38.  
  39. dayz_minpos = -1;
  40. dayz_maxpos = 16000;
  41.  
  42. dayz_sellDistance_vehicle = 10;
  43. dayz_sellDistance_boat = 30;
  44. dayz_sellDistance_air = 40;
  45.  
  46. dayz_maxAnimals = 5; // Default: 8
  47. dayz_tameDogs = true;
  48. DynamicVehicleDamageLow = 0; // Default: 0
  49. DynamicVehicleDamageHigh = 100; // Default: 100
  50.  
  51. DZE_BuildOnRoads = false; // Default: False
  52.  
  53. EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]];
  54. dayz_fullMoonNights = true;
  55.  
  56. //Load in compiled functions
  57. call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early)
  58. progressLoadingScreen 0.1;
  59. call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf"; //Initilize the publicVariable event handlers
  60. progressLoadingScreen 0.2;
  61. call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical
  62. progressLoadingScreen 0.4;
  63. call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf"; //Compile regular functions
  64. progressLoadingScreen 0.5;
  65. call compile preprocessFileLineNumbers "server_traders.sqf"; //Compile trader configs
  66. call compile preprocessFileLineNumbers "custom\compiles.sqf"; //Compile custom compiles
  67. progressLoadingScreen 1.0;
  68.  
  69. "filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";
  70.  
  71. if (isServer) then {
  72. call compile preprocessFileLineNumbers "\z\addons\dayz_server\missions\DayZ_Epoch_11.Chernarus\dynamic_vehicle.sqf";
  73. //Compile vehicle configs
  74.  
  75. // Add trader citys
  76. _nil = [] execVM "\z\addons\dayz_server\missions\DayZ_Epoch_11.Chernarus\mission.sqf";
  77. _serverMonitor = [] execVM "\z\addons\dayz_code\system\server_monitor.sqf";
  78. };
  79.  
  80. if (!isDedicated) then {
  81. [] execVM "welcome\Server_WelcomeCredits.sqf";
  82. //Conduct map operations
  83. 0 fadeSound 0;
  84. waitUntil {!isNil "dayz_loadScreenMsg"};
  85. dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
  86.  
  87. //Run the player monitor
  88. _id = player addEventHandler ["Respawn", {_id = [] spawn player_death; _nul = [] execVM "playerspawn.sqf";}];
  89. _id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
  90. _playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
  91. _nul = [] execVM "playerspawn.sqf";
  92.  
  93.  
  94.  
  95. //Lights
  96. //[false,12] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
  97.  
  98. };
  99.  
  100.  
  101. //Start Dynamic Weather
  102. execVM "\z\addons\dayz_code\external\DynamicWeatherEffects.sqf";
  103.  
  104.  
  105. #include "\z\addons\dayz_code\system\BIS_Effects\init.sqf"
  106.  
  107.  
  108. //debug
  109. [] execVM "debug.sqf";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement