mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
50 lines
1.8 KiB
C++
50 lines
1.8 KiB
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class GVAR(checkAmmo) {
|
|
displayName = CSTRING(checkAmmo);
|
|
condition = QUOTE(GVAR(showCheckAmmoSelf) && {_player call FUNC(canCheckAmmoSelf)});
|
|
statement = QUOTE(call FUNC(checkAmmo));
|
|
exceptions[] = {"isNotInside", "isNotSwimming", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Actions {
|
|
class ACE_Weapon {
|
|
class GVAR(LinkBelt) {
|
|
displayName = CSTRING(LinkBelt);
|
|
distance = 2.0;
|
|
condition = QUOTE(([ARR_2(_player, _target)] call FUNC(getAmmoToLinkBelt)) > 0);
|
|
statement = QUOTE([ARR_2(_player, _target)] call FUNC(startLinkingBelt));
|
|
exceptions[] = {"isNotInside"};
|
|
};
|
|
class GVAR(CheckAmmo) {
|
|
displayName = CSTRING(checkAmmo);
|
|
distance = 2.0;
|
|
condition = QUOTE(call FUNC(canCheckAmmo));
|
|
statement = QUOTE(call FUNC(checkAmmo));
|
|
exceptions[] = {"isNotInside", "isNotSwimming", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
class LandVehicle;
|
|
class StaticWeapon: LandVehicle {
|
|
class ACE_Actions {
|
|
class ACE_MainActions {
|
|
class GVAR(CheckAmmo) {
|
|
displayName = CSTRING(checkAmmo);
|
|
distance = 2.0;
|
|
condition = QUOTE(call FUNC(canCheckAmmo));
|
|
statement = QUOTE(call FUNC(checkAmmo));
|
|
exceptions[] = {"isNotInside", "isNotSwimming", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|