Advertisement
Matt34

Untitled

Jun 26th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. if (isNil "custom_monitor") then {custom_monitor = true;} else {custom_monitor = !custom_monitor;};
  2.  
  3. while {custom_monitor} do
  4. {
  5. _kills = player getVariable["zombieKills",0];
  6. _killsH = player getVariable["humanKills",0];
  7. _killsB = player getVariable["banditKills",0];
  8. _humanity = player getVariable["humanity",0];
  9. _headShots = player getVariable["headShots",0];
  10. hintSilent parseText format ["
  11. <t size='1'font='Bitstream'align='center'>%1</t><br/>
  12. <t size='1'font='Bitstream'align='left'>Midochlorians Left:</t><t size='1.5' font='Bitstream'align='right'>%2</t><br/>
  13. <t size='1'font='Bitstream'align='left'>Humanity:</t><t size='1.5'font='Bitstream'align='right'>%3</t><br/>
  14. <t size='1'font='Bitstream'align='left'>Noobs Killed:</t><t size='1.5'font='Bitstream'align='right'>%4</t><br/>
  15. <t size='1'font='Bitstream'align='left'>Assholes Killed:</t><t size='1.5'font='Bitstream'align='right'>%5</t><br/>
  16. <t size='1'font='Bitstream'align='left'>Zombitches Killed:</t><t size='1.5'font='Bitstream'align='right'>%6</t><br/>
  17. <t size='1'font='Bitstream'align='left'>Dome Shots:</t><t size='1.5'font='Bitstream'align='right'>%7</t><br/>
  18. <t size='1' font='Bitstream' align='left'>FPS: </t><t size='1' font='Bitstream' align='right'>%8</t><br/>
  19. <t size='1'font='Bitstream'align='center'>Welcome to the Apocalypse! </t><br/>
  20.  
  21. ",dayz_playerName,r_player_blood,round _humanity,_killsH,_killsB,_kills,_headShots,diag_fps];
  22. sleep 1;
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement