mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-24 09:29:21 +03:00
REsec and BIS effects fixes from 177 part 2
This commit is contained in:
@@ -7,8 +7,11 @@ OnLoadMissionTime = False;
|
||||
disabledAI = true;
|
||||
disableChannels[]={0,1,2,6};
|
||||
enableItemsDropping = 0;
|
||||
onPauseScript = "\z\addons\dayz_code\compile\player_onPause.sqf";
|
||||
#include "R3F_Realism\R3F_Weight\R3F_CfgWeight.h"
|
||||
briefing = 0;
|
||||
debriefing = 0;
|
||||
|
||||
onPauseScript = "";
|
||||
loadScreen = "\z\addons\dayz_code\gui\dayz_logo_ca.paa";
|
||||
|
||||
class Header
|
||||
|
||||
@@ -43,6 +43,35 @@ progressLoadingScreen 1.0;
|
||||
|
||||
"filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";
|
||||
|
||||
/* BIS_Effects_* fixes from Dwarden */
|
||||
BIS_Effects_EH_Killed = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\killed.sqf";
|
||||
BIS_Effects_AirDestruction = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\AirDestruction.sqf";
|
||||
BIS_Effects_AirDestructionStage2 = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\AirDestructionStage2.sqf";
|
||||
|
||||
BIS_Effects_globalEvent = {
|
||||
BIS_effects_gepv = _this;
|
||||
publicVariable "BIS_effects_gepv";
|
||||
_this call BIS_Effects_startEvent;
|
||||
};
|
||||
|
||||
BIS_Effects_startEvent = {
|
||||
switch (_this select 0) do {
|
||||
case "AirDestruction": {
|
||||
[_this select 1] spawn BIS_Effects_AirDestruction;
|
||||
};
|
||||
case "AirDestructionStage2": {
|
||||
[_this select 1, _this select 2, _this select 3] spawn BIS_Effects_AirDestructionStage2;
|
||||
};
|
||||
case "Burn": {
|
||||
[_this select 1, _this select 2, _this select 3, false, true] spawn BIS_Effects_Burn;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
"BIS_effects_gepv" addPublicVariableEventHandler {
|
||||
(_this select 1) call BIS_Effects_startEvent;
|
||||
};
|
||||
|
||||
if ((!isServer) && (isNull player) ) then
|
||||
{
|
||||
waitUntil {!isNull player};
|
||||
@@ -73,4 +102,5 @@ if (!isDedicated) then {
|
||||
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
|
||||
_playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
};
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
@@ -5,9 +5,12 @@ class Mission
|
||||
{
|
||||
"shapur_baf",
|
||||
"ca_modules_animals",
|
||||
"dayz_anim",
|
||||
"dayz_code",
|
||||
"dayz_communityassets",
|
||||
"dayz_weapons",
|
||||
"dayz_equip",
|
||||
"dayz_epoch",
|
||||
"dayz_vehicles",
|
||||
"cacharacters_pmc",
|
||||
"ca_modules_functions",
|
||||
@@ -18,6 +21,7 @@ class Mission
|
||||
"sigisolda",
|
||||
"suv_col",
|
||||
"csj_gyroac",
|
||||
"map_eu"
|
||||
};
|
||||
addOnsAuto[]=
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user