Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- For DayZ Epoch
- Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz
- */
- startLoadingScreen ["","RscDisplayLoadCustom"];
- cutText ["","BLACK OUT"];
- enableSaving [false, false];
- //REALLY IMPORTANT VALUES
- dayZ_instance = 11; //The instance
- dayZ_serverName = "";
- dayzHiveRequest = [];
- initialized = false;
- dayz_previousID = 0;
- //disable greeting menu
- player setVariable ["BIS_noCoreConversations", true];
- //disable radio messages to be heard and shown in the left lower corner of the screen
- enableRadio false;
- // May prevent "how are you civillian?" messages from NPC
- enableSentences false;
- // DayZ Epoch config
- spawnShoremode = 1; // Default = 1 (on shore)
- spawnArea= 1500; // Default = 1500
- dayz_MapArea = 14000; // Default = 10000
- //Default Loadout
- DefaultMagazines = ["ItemBandage","ItemBandage","17Rnd_9x19_glock17","17Rnd_9x19_glock17","ItemMorphine","ItemPainkiller","ItemWaterbottleBoiled","FoodSteakCooked"];
- DefaultWeapons = ["glock17_EP1","ItemFlashlight","ItemHatchet","Itemtoolbox"];
- DefaultBackpack = "DZ_Backpack_EP1";
- DefaultBackpackWeapon = "";
- //Epoch Config Variables
- call compile preprocessFileLineNumbers "config\epochconfig.sqf";
- // Dayz Epoch Events
- EpochEvents = [["any","any","any","any",5,"crash_spawner"],["any","any","any","any",10,"crash_spawner"],["any","any","any","any",15,"supply_drop"],["any","any","any","any",25,"ikea"],["any","any","any","any",35,"supply_drop"],
- ["any","any","any","any",40,"crash_spawner"],["any","any","any","any",45,"supply_drop"],["any","any","any","any",50,"ikea"]];
- //Load in compiled functions
- call compile preprocessFileLineNumbers "init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early)
- progressLoadingScreen 0.1;
- call compile preprocessFileLineNumbers "init\publicEH.sqf"; //Initilize the publicVariable event handlers
- progressLoadingScreen 0.2;
- call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical
- progressLoadingScreen 0.4;
- call compile preprocessFileLineNumbers "init\compiles.sqf"; //Compile regular functions
- progressLoadingScreen 0.5;
- call compile preprocessFileLineNumbers "traders\server_traders.sqf"; //Compile trader configs
- call compile preprocessFileLineNumbers "logistic\init.sqf";
- call compile preprocessFileLineNumbers "admintools\AdminList.sqf"; // Epoch admin Tools variables/UIDs
- call compile preprocessFileLineNumbers "custom\compiles.sqf"; //Compile custom compiles
- progressLoadingScreen 1.0;
- stream_locationCheck = {
- //Thank you for the garbage rocket!
- };
- "filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";
- if (isServer) then {
- // Add trader citys
- _nil = [] execVM "\z\addons\dayz_server\missions\DayZ_Epoch_17.Chernarus\mission.sqf";
- _serverMonitor = [] execVM "\z\addons\dayz_code\system\server_monitor.sqf";
- };
- if (!isDedicated) then {
- //Conduct map operations
- 0 fadeSound 0;
- waitUntil {!isNil "dayz_loadScreenMsg"};
- dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
- //Custom Loadouts
- [] ExecVM "custom\loadouts.sqf";
- //Service Point
- execVM "service_point\service_point.sqf";
- //Run the player monitor
- _id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
- _playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
- };
- // Logo watermark: adding a logo in the bottom left corner of the screen with the server name in it
- if (!isNil "dayZ_serverName") then {
- [] spawn {
- waitUntil {(!isNull Player) and (alive Player) and (player == player)};
- waituntil {!(isNull (findDisplay 46))};
- 5 cutRsc ["wm_disp","PLAIN"];
- ((uiNamespace getVariable "wm_disp") displayCtrl 1) ctrlSetText dayZ_serverName;
- };
- };
- //Start Dynamic Weather
- execVM "\z\addons\dayz_code\external\DynamicWeatherEffects.sqf";
- //BIS_Effects
- #include "\z\addons\dayz_code\system\BIS_Effects\init.sqf"
- //Mod Config
- execVM "config\modconfig.sqf";
- [] execVM "admintools\Activate.sqf"; // Epoch admin tools
- [] ExecVM "buildings\balotaeditado.sqf";
- [] execvm 'AGN\agn_SafeZoneCommander.sqf';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement