mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
129cc26438
* Add magazines for some vanilla weapons with different tracer colors * Removed obsolete comment * unified naming of tracer magazines * Add CfgMagazineWells * Add 5.8mm mags * Add Minimi boxes * Added 5.56 Drum mags * Add Katiba and 7.62x51 mags * Remove magazine macro to make config easier to read and edit. * Add pictures available in arma files * Add magazines to vanilla magazinWells * Fix wrong base class for Katiba tracer mags * Removed duplicate strings * delete blank lines in stringtable
20 lines
468 B
C++
20 lines
468 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_ballistics"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"ACE2 Team"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgAmmo.hpp"
|
|
#include "CfgMagazines.hpp"
|
|
#include "CfgMagazineWells.hpp"
|