Hello people, seems like this thread is a bit old and probably forgotten but i'm still going to ask my question 
I have been using a certain Debug Monitor before this one and really liked the setup it was using (The way it looked ingame) but i had problems using it since it was spamming my .rpt log and lagging the server... Basically had to uninstall it...
Anyways, i am now using this one with no problems regarding the log spamming but wanted to know if it was possible to set this one up the way the other one was ? (The way it looks ingame)
This is the code from the old one, if anyone can transfom it for it to display as it is but with this debug monitor here ?
Thanks a lot for the help anyone could give me
I have been using a certain Debug Monitor before this one and really liked the setup it was using (The way it looked ingame) but i had problems using it since it was spamming my .rpt log and lagging the server... Basically had to uninstall it...
Anyways, i am now using this one with no problems regarding the log spamming but wanted to know if it was possible to set this one up the way the other one was ? (The way it looks ingame)
This is the code from the old one, if anyone can transfom it for it to display as it is but with this debug monitor here ?
Code:
if (isNil "custom_monitor") then {custom_monitor = true;} else {custom_monitor = !custom_monitor;};
while {custom_monitor} do
{
_kills = player getVariable["zombieKills",0];
_killsH = player getVariable["humanKills",0];
_killsB = player getVariable["banditKills",0];
_humanity = player getVariable["humanity",0];
_headShots = player getVariable["headShots",0];
hintSilent parseText format ["
<t size='2'font='Bitstream'align='center'>%1</t><br/>
<t size='1'font='Bitstream'align='left'>Blood:</t><t size='1' font='Bitstream'align='right'>%2</t><br/>
<t size='1'font='Bitstream'align='left'>Humanity:</t><t size='1'font='Bitstream'align='right'>%3</t><br/>
<t size='1'font='Bitstream'align='left'>Murders:</t><t size='1'font='Bitstream'align='right'>%4</t><br/>
<t size='1'font='Bitstream'align='left'>Bandits Killed:</t><t size='1'font='Bitstream'align='right'>%5</t><br/>
<t size='1'font='Bitstream'align='left'>Zombies Killed:</t><t size='1'font='Bitstream'align='right'>%6</t><br/>
<t size='1'font='Bitstream'align='left'>Headshots:</t><t size='1'font='Bitstream'align='right'>%7</t><br/>
<t size='2'font='Bitstream'align='center'>2ch DayZ Server</t><br/>
",dayz_playerName,r_player_blood,round _humanity,_killsH,_killsB,_kills,_headShots];
sleep 1;
};
Thanks a lot for the help anyone could give me