mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-19 10:02:02 +03:00
CFG WEAPONS DONE
This commit is contained in:
36
SQF/dayz_code/Configs/CfgWeapons/Pistols/M9.hpp
Normal file
36
SQF/dayz_code/Configs/CfgWeapons/Pistols/M9.hpp
Normal file
@@ -0,0 +1,36 @@
|
||||
class M9_DZ : M9
|
||||
{
|
||||
displayName = $STR_DZ_WPN_M9_NAME;
|
||||
|
||||
magazines[] =
|
||||
{
|
||||
15Rnd_9x19_M9,
|
||||
15Rnd_9x19_M9SD
|
||||
};
|
||||
|
||||
class Attachments
|
||||
{
|
||||
Attachment_Sup9 = "M9_SD_DZ";
|
||||
};
|
||||
};
|
||||
|
||||
class M9_SD_DZ : M9SD
|
||||
{
|
||||
//model = "z\addons\dayz_communityweapons\m9\m9_sd.p3d";
|
||||
displayName = $STR_DZ_WPN_M9_SD_NAME;
|
||||
|
||||
magazines[] =
|
||||
{
|
||||
15Rnd_9x19_M9SD,
|
||||
15Rnd_9x19_M9
|
||||
};
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class RemoveSuppressor
|
||||
{
|
||||
text = $STR_DZ_ATT_SUP9_RMVE;
|
||||
script = "; ['Attachment_Sup9',_id,'M9_DZ'] call player_removeAttachment";
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user