mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-20 10:26:28 +03:00
0.7 + 1.7.5.M1D19
This commit is contained in:
@@ -1,10 +1,3 @@
|
||||
//Remove action menu
|
||||
player removeAction s_player_stats;
|
||||
s_player_stats = -1;
|
||||
|
||||
//set stats enabled later use
|
||||
player setVariable ["StatsEnabled",true,false];
|
||||
|
||||
//Let Zeds know
|
||||
_id = [player,4,true,(getPosATL player)] spawn player_alertZombies;
|
||||
|
||||
@@ -12,6 +5,7 @@ _id = [player,4,true,(getPosATL player)] spawn player_alertZombies;
|
||||
|
||||
hintSilent parseText format ["
|
||||
<t size='1.20' font='Bitstream' color='#5882FA'>%1</t><br/><br/>
|
||||
<t size='1.20' font='Bitstream' color='#5882FA'>Survived %7 Days</t><br/><br/>
|
||||
<t size='1.15' font='Bitstream' align='left'>Zombies Killed: </t><t size='1.15' font='Bitstream' align='right'>%2</t><br/>
|
||||
<t size='1.15' font='Bitstream' align='left'>Headshots: </t><t size='1.15' font='Bitstream' align='right'>%3</t><br/>
|
||||
<t size='1.15' font='Bitstream' align='left'>Murders: </t><t size='1.15' font='Bitstream' align='right'>%4</t><br/>
|
||||
@@ -22,7 +16,8 @@ hintSilent parseText format ["
|
||||
(player getVariable['headShots', 0]),
|
||||
(player getVariable['humanKills', 0]),
|
||||
(player getVariable['banditKills', 0]),
|
||||
(player getVariable['humanity', 0])
|
||||
(player getVariable['humanity', 0]),
|
||||
(dayz_skilllevel)
|
||||
];
|
||||
|
||||
/*
|
||||
@@ -33,6 +28,3 @@ player createDiaryRecord ["MyDiary",["Stats", "Murders: <execute expression='pla
|
||||
player createDiaryRecord ["MyDiary",["Stats", "Bandits Killed: <execute expression='player getVariable['banditKills', 0]'</execute>"]];
|
||||
player createDiaryRecord ["MyDiary",["Stats", "Humanity: <execute expression='player getVariable['humanity', 0]'</execute>"]];
|
||||
*/
|
||||
|
||||
//Remove variable
|
||||
player setVariable ["StatsEnabled",false,false];
|
||||
|
||||
Reference in New Issue
Block a user