Color new killfeed death messages

The player who died is colored red and the killer is colored green. The
weapon now points in the direction of the player who died.

Also reverted 66fd5be since it did not help. It is already done globally
in player_death.sqf anyway. I tested again and this actually fixes the
problem.
This commit is contained in:
ebaydayz
2016-09-29 20:24:59 -04:00
parent 1b91e808dd
commit b45d6d9a24
4 changed files with 5 additions and 5 deletions

View File

@@ -605,7 +605,7 @@ if (!isDedicated) then {
death_4 = "";
};
death_1 = format["<t size='.528' align='left' color='#a81e13'>%1</t><img size='.8' align='left' image='%2'/><t size='.528' align='left' color='#3FB07D'> %3 (%4m)</t>",_sourceName,_icon,_playerName,_distance];
death_1 = format["<t size='.528' align='left' color='#a81e13'>%1 </t><img size='.8' align='left' image='%2'/><t size='.528' align='left' color='#3FB07D'> %3 (%4m)</t>",_playerName,_icon,_sourceName,_distance];
death_1_time = diag_ticktime;
_message = format ["%1<br />%2<br />%3<br />%4",death_1,death_2,death_3,death_4];
[_message,safeZoneX,safeZoneY,10,0,0,8000] spawn BIS_fnc_dynamicText;