Files
DayZ-Epoch/SQF/dayz_code/medical/pulse.sqf
icomrade c3ed4e49e1 Replace sleep with uiSleep
see the below links for more info. uiSleep is based off of a more
accurate method of tracking time, whereas sleep can fluctuate depending
on application performance since it is based on framerate.
https://community.bistudio.com/wiki/uiSleep
https://community.bistudio.com/wiki/sleep_vs_uiSleep
https://community.bistudio.com/wiki/sleep
2016-02-17 13:03:17 -05:00

19 lines
472 B
Plaintext

// bleed.sqf
private ["_unit","_isDead","_isCardiac"];
_unit = (_this select 3);
_isDead = _unit getVariable["USEC_isDead",false];
_isCardiac = _unit getVariable["USEC_isCardiac",false];
uiSleep 1;
if (_isDead) then {
TitleText[(localize "str_epoch_player_3"),"PLAIN DOWN",3];
} else {
if (_isCardiac) then {
TitleText[(localize "str_epoch_player_4"),"PLAIN DOWN",3];
} else {
TitleText[(localize "str_epoch_player_5"),"PLAIN DOWN",3];
};
};
//r_action = false;