DangerRuss
OpenDayZ Rockstar!
Just trying to add a very simple debug monitor to my server that includes your blood, days survived, fps, and time until next restart (6hours). Only it says "any days".
Code:
if (isNil "custom_monitor") then {custom_monitor = true;} else {custom_monitor = !custom_monitor;};
while {custom_monitor} do
{
_clientfps =round diag_fps;
_tL = ((21600 - time) / 60);
_tL = round(_tL);
hintSilent parseText format ["
<t size='2'font='Bitstream'align='center'color='#993300'>W.I.C.K.E.D.</t><br/>
<t size='1'font='Bitstream'align='left'>Blood:</t><t size='1' font='Bitstream'align='right'>%1</t><br/>
<t size='1'font='Bitstream'align='left'>Survived:</t><t size='1'font='Bitstream'align='right'>%2 Days</t><br/>
<t size='1'font='Bitstream'align='left'>FPS:</t><t size='1'font='Bitstream'align='right'>%3</t><br/>
<t size='1'font='Bitstream'align='left'>Time until restart:</t><t size='0.75'font='Bitstream'align='right' color='#FFCC00'>%4mins</t><br/>
<t size='1.5'font='Bitstream'align='center'color='#336600'>%5</t><br/>
",r_player_blood,dayz_Survived,(_clientfps),(_tL),dayz_playerName];
sleep 1;
};