mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-22 03:16:27 +03:00
CFG WEAPONS DONE
This commit is contained in:
71
SQF/dayz_code/Configs/CfgMagazines/VehicleParts.hpp
Normal file
71
SQF/dayz_code/Configs/CfgMagazines/VehicleParts.hpp
Normal file
@@ -0,0 +1,71 @@
|
||||
class PartFueltank : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 2;
|
||||
|
||||
model = "\dayz_equip\models\fueltank.p3d";
|
||||
picture = "\dayz_equip\textures\equip_fueltank_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_8;
|
||||
descriptionShort = $STR_EQUIP_DESC_8;
|
||||
};
|
||||
|
||||
class PartWheel : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 6;
|
||||
|
||||
model = "\dayz_equip\models\wheel.p3d";
|
||||
picture = "\dayz_equip\textures\equip_wheel_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_9;
|
||||
descriptionShort = $STR_EQUIP_DESC_9;
|
||||
};
|
||||
|
||||
class PartEngine : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 10;
|
||||
|
||||
model = "\dayz_equip\models\engine.p3d";
|
||||
picture = "\dayz_equip\textures\equip_engine_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_11;
|
||||
descriptionShort = $STR_EQUIP_DESC_11;
|
||||
};
|
||||
|
||||
class PartVRotor : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 8;
|
||||
|
||||
model = "\dayz_equip\models\vrotor.p3d";
|
||||
picture = "\dayz_equip\textures\equip_vrotor_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_32;
|
||||
descriptionShort = $STR_EQUIP_DESC_32;
|
||||
};
|
||||
|
||||
class PartGlass : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 2;
|
||||
|
||||
model = "\dayz_equip\models\carglass.p3d";
|
||||
picture = "\dayz_equip\textures\equip_carglass_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_30;
|
||||
descriptionShort = $STR_EQUIP_DESC_30;
|
||||
};
|
||||
|
||||
class PartGeneric : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 3;
|
||||
|
||||
model = "\dayz_equip\models\genericparts.p3d";
|
||||
picture = "\dayz_equip\textures\equip_genericparts_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_10;
|
||||
descriptionShort = $STR_EQUIP_DESC_10;
|
||||
};
|
||||
Reference in New Issue
Block a user