Mission Makers
Classname: ACE_DAGR.
To add to an object: this addWeapon "ace_dagr";
Addon Makers
Making island config to show 8 digits on the GPS
Example grid config (under CfgWorlds):
class Grid : Grid {
class Zoom1 {
zoomMax = 0.0001;
format = "XY";
formatX = "0000";
formatY = "0000";
stepX = 10;
stepY = -10;
};
class Zoom2 {
zoomMax = 0.1;
format = "XY";
formatX = "000";
formatY = "000";
stepX = 100;
stepY = -100;
};
class Zoom3 {
zoomMax = 1;
format = "XY";
formatX = "00";
formatY = "00";
stepX = 1000;
stepY = -1000;
};
};
The only thing that needs to be adjusted for each map is the zoomMax value under class Zoom2 to obtain a smooth transition from the 1Km square grids to the 100m square grids.
