diff --git a/Sources/epoch_code/compile/setup/masterLoop/Event0.sqf b/Sources/epoch_code/compile/setup/masterLoop/Event0.sqf index 65e89ec4..c73a7a1e 100644 --- a/Sources/epoch_code/compile/setup/masterLoop/Event0.sqf +++ b/Sources/epoch_code/compile/setup/masterLoop/Event0.sqf @@ -8,4 +8,18 @@ if (EPOCH_IsAutoRunning) then { EPOCH_IsAutoRunning = false; player switchMove ""; }; +}; + +if (animationstate player in ['aadjpknlmstpsraswpstddown','aadjpknlmstpsraswrflddown'] && cameraview == 'GUNNER' && (player weapondirection (currentweapon player)) select 2 < -0.88) then { + _fadedblack = true; + TitleText ['Stop BugUsing!','BLACK FADED']; +} +else { + if(_fadedblack) then { + [] spawn { + uisleep 2; + TitleText ['','PLAIN DOWN']; + }; + _fadedblack = false; + }; }; \ No newline at end of file diff --git a/Sources/epoch_code/compile/setup/masterLoop/init.sqf b/Sources/epoch_code/compile/setup/masterLoop/init.sqf index d2819211..90681e6b 100644 --- a/Sources/epoch_code/compile/setup/masterLoop/init.sqf +++ b/Sources/epoch_code/compile/setup/masterLoop/init.sqf @@ -13,6 +13,9 @@ EPOCH_forceUpdateNow = false; // start alive timer _clientAliveTimer = diag_tickTime; +// Fade Black Screen +_fadedblack = false; + // init player stat vars _gmVarsInit = ["CfgEpochClient", "gmVars", [["Temp",98.6],["Hunger",500],["Thirst",500],["Toxicity",0],["Stamina",10],["BloodP",100],["Alcohol",0],["Radiation",0]]] call EPOCH_fnc_returnConfigEntryV2; _gModeVarNames = _gmVarsInit apply {_x param [0,""]};