[SOLVED]Disable Waypoints?

SchwEde

OpenDayZ Rockstar!
Hey,

so i was wondering if its possible to disable the Waypoints you can set for yourself on the map. The reason is because i want people to use the GPS and Rangefinder and not just simple place a Marker on the map and let them run straight lines across the map or the worse situation when snipers using it to find out the range of their victim. I already tried it to set

Code:
HUDWp=0;
HUDWpPerm=1;

sadly without any reslut. Only way that worked was to disable the whole HUD but i want to keep the Crosshair for the players.
Im missing something or isnt there any way to get this done?
Thanks for any help

Cheers

EDIT: Nevermind got this working ^^
 
Last edited:
No Waypoints, No Crosshair ;)

Code:
    class Veteran
    {
        class Flags
        {
            3rdPersonView=1;
            armor=0;
            autoAim=0;
            autoGuideAT=0;
            autoSpot=0;
            cameraShake=1;
            clockIndicator=0;
            deathMessages=1;
            enemyTag=0;
            friendlyTag=0;
            hud=0;
            hudGroupInfo=0;
            hudPerm=0;
            hudWp=0;
            hudWpPerm=0;
            map=0;
            netStats=1;
            tracers=0;
            ultraAI=0;
            unlimitedSaves=0;
            vonId=1;
            weaponCursor=0;
        };
 
Back
Top