need help with player map positions

warriorcrash124

New Member
iv been setting up a server over the past few days and have hit of a snag, im after finding out how to set up a script that allows players to see their position on the map, like having the admin item "map_debug" in your inventory,
i have seen a few other epoch servers set up running with the ability to see player positions (without GPS) but cant dig up any information on it.
will be grateful on any help
 
Some host's actually have a option to enable this like dayz.st or you could use a debug monitor that says there coords on it
 
yeah theres some pre-made script i found on a basic debug monitor on this forum

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'>DayZ Epoch Server</t><br/>

    ",dayz_playerName,r_player_blood,round _humanity,_killsH,_killsB,_kills,_headShots];
sleep 1;
};

was looking at putting the coordinate text in on that if its possible?
 
Back
Top