2015-01-23 22:40:39 +00:00
|
|
|
class CfgWeapons {
|
2015-03-15 16:27:21 +00:00
|
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_ItemCore;
|
2015-01-23 22:40:39 +00:00
|
|
|
|
2015-03-15 16:27:21 +00:00
|
|
|
class ACE_key_master: ACE_ItemCore {
|
2016-01-25 20:29:27 +00:00
|
|
|
scopeArsenal = 0;
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-03-15 16:27:21 +00:00
|
|
|
displayName = "Vehicle Key: Master";
|
2015-05-27 17:04:25 +00:00
|
|
|
descriptionShort = CSTRING(Item_Master_Description);
|
2015-03-15 16:27:21 +00:00
|
|
|
model = "\A3\weapons_F\ammo\mag_univ.p3d";
|
2016-04-08 18:34:50 +00:00
|
|
|
picture = QPATHTOF(ui\keyBlack.paa);
|
2015-03-15 16:27:21 +00:00
|
|
|
scope = 2;
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
|
|
mass = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ACE_key_lockpick: ACE_key_master {
|
|
|
|
displayName = "Lockpick";
|
2015-05-27 17:04:25 +00:00
|
|
|
descriptionShort = CSTRING(Item_Lockpick_Description);
|
2016-04-08 18:34:50 +00:00
|
|
|
picture = QPATHTOF(ui\lockpick.paa);
|
2015-03-15 16:27:21 +00:00
|
|
|
};
|
|
|
|
class ACE_key_west: ACE_key_master {
|
|
|
|
displayName = "Vehicle Key: West";
|
2015-05-27 17:04:25 +00:00
|
|
|
descriptionShort = CSTRING(Item_West_Description);
|
2016-04-08 18:34:50 +00:00
|
|
|
picture = QPATHTOF(ui\keyBlue.paa);
|
2015-03-15 16:27:21 +00:00
|
|
|
};
|
|
|
|
class ACE_key_east: ACE_key_master {
|
|
|
|
displayName = "Vehicle Key: East";
|
2015-05-27 17:04:25 +00:00
|
|
|
descriptionShort = CSTRING(Item_East_Description);
|
2016-04-08 18:34:50 +00:00
|
|
|
picture = QPATHTOF(ui\keyRed.paa);
|
2015-03-15 16:27:21 +00:00
|
|
|
};
|
|
|
|
class ACE_key_indp: ACE_key_master {
|
|
|
|
displayName = "Vehicle Key: Independent";
|
2015-05-27 17:04:25 +00:00
|
|
|
descriptionShort = CSTRING(Item_Indp_Description);
|
2016-04-08 18:34:50 +00:00
|
|
|
picture = QPATHTOF(ui\keyPurple.paa);
|
2015-03-15 16:27:21 +00:00
|
|
|
};
|
|
|
|
class ACE_key_civ: ACE_key_master {
|
|
|
|
displayName = "Vehicle Key: Civilian";
|
2015-05-27 17:04:25 +00:00
|
|
|
descriptionShort = CSTRING(Item_Civ_Description);
|
2016-04-08 18:34:50 +00:00
|
|
|
picture = QPATHTOF(ui\keyGreen.paa);
|
2015-03-15 16:27:21 +00:00
|
|
|
};
|
2015-01-23 22:40:39 +00:00
|
|
|
};
|