mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
93b7722716
* General - Cleanup CfgPatches unit/weapon arrays add test tool fix refuel pump fix flashlight pistol transport type fix iDAB reammo box * Update config.cpp
24 lines
890 B
C++
24 lines
890 B
C++
#include "script_component.hpp"
|
|
#include "\z\ace\addons\csw\script_config_macros_csw.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {QGVAR(2b14_carry), QGVAR(nsv_carry), QGVAR(kord_carry), QGVAR(ags30_carry), QGVAR(spg9_carry), QGVAR(spg9m_carry), QGVAR(metis_carry), QGVAR(kornet_carry)};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_explosives", "ace_csw", "ace_rearm", "ace_refuel", "ace_repair", "rhs_main_loadorder"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Ruthberg", "GitHawk", "BaerMitUmlaut", "commy2", "Skengman2"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgAmmo.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgMagazines.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgMagazineGroups.hpp"
|