mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
Penalty for looking through Floors (Tower-Glitch)
This commit is contained in:
parent
8796a2de89
commit
946762fa06
@ -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;
|
||||
};
|
||||
};
|
@ -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,""]};
|
||||
|
Loading…
x
Reference in New Issue
Block a user