ACE3/addons/common/CfgWeapons.hpp

45 lines
1.1 KiB
C++
Raw Normal View History

2015-01-12 21:34:01 +00:00
2015-01-11 18:06:21 +00:00
class CfgWeapons {
2015-01-12 21:34:01 +00:00
class ItemCore;
class ACE_ItemCore: ItemCore {
type = 4096;//4;
detectRange = -1;
simulation = "ItemMineDetector";
};
2015-01-11 18:06:21 +00:00
2015-03-18 15:47:04 +00:00
class Rifle;
class Rifle_Base_F: Rifle {
class WeaponSlotsInfo;
};
2015-01-12 21:34:01 +00:00
class ACE_FakePrimaryWeapon: Rifle_Base_F {
2015-03-18 15:47:04 +00:00
scope = 2;
2015-01-12 21:34:01 +00:00
displayName = "";
model = "\A3\Weapons_f\empty";
2015-03-18 15:47:04 +00:00
picture = "";
2015-01-12 21:34:01 +00:00
magazines[] = {"ACE_FakeMagazine"};
2015-03-18 15:47:04 +00:00
discreteDistance[] = {};
discreteDistanceInitIndex = 0;
class WeaponSlotsInfo: WeaponSlotsInfo {
mass = 0;
};
2015-01-12 21:34:01 +00:00
};
2015-03-26 22:14:22 +00:00
class InventoryItem_Base_F;
class ACE_Banana: ACE_ItemCore {
author = "$STR_ACE_Common_ACETeam";
scope = 2;
displayName = "$STR_ACE_Common_bananaDisplayName";
descriptionShort = "$STR_ACE_Common_bananaDescr";
model = PATHTOF(data\banana.p3d);
picture = PATHTOF(data\icon_banana_ca.paa);
icon = "iconObject_circle";
mapSize = 0.034;
class ItemInfo: InventoryItem_Base_F {
mass = 1;
};
};
2015-01-11 18:06:21 +00:00
};
2015-03-26 22:14:22 +00:00