Files
DayZ-Epoch/SQF/dayz_code/actions/list_playerDeathsAlt.sqf
[VB]AWOL 953315c5fc RC4
2013-12-03 11:49:53 -06:00

16 lines
377 B
Plaintext

private [];
player removeMagazine "ItemNewspaper";
PVDZE_plr_DeathB = [player];
publicVariableServer "PVDZE_plr_DeathB";
waitUntil {!isNil "PVDZE_plr_DeathBResult"};
if((count PVDZE_plr_DeathBResult) > 0) then {
// load death message board ui
call EpochDeathBoardLoad;
} else {
cutText [(localize "str_epoch_player_36"), "PLAIN DOWN"];
PVDZE_plr_DeathBResult = nil;
};