• View
  • Changes
  • Options
  • Related
  • Edit
  • Download | Support | Changelogs

     

    Documentation:

    General Information

    Introduction | Overview | Features | Goals and Scope | FAQ Installation | Running an ACE Server | Tracking Problems

     

    Community Information

    About Us (contact) | Compatible Mods | Contribute | Guides | Missions | Servers | Videos

     

    Developer Information

    API | Classlists | Compatibility | Modification | Resources

     

  • View
  • Changes
  • Options
  • Related
  • Edit
  • News    

    Ongoing development Wagn_feed_icon-medium-9343

       ACE 1.13 RC5 [2011-12-09. Hotfix: 2012-04-27]

     

    Stable Wagn_feed_icon-medium-9343

       ACE 1.13 for OA [2011-12-23]

       ACE 1.3 for A2 [2010-07-05] (Deprecated)

     

    Dev blogs Wagn_feed_icon-medium-9343

    1 2 next » (37)

    1 2 next » (37)

     

    Wheeled by Wagn v. 1.8.1
  • View
  • Changes
  • Options
  • Related
  • Edit
  • 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.