mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Add new pistols from Robert Hammer. - 23 new pistols - New sounds for the M9, M1911, PDW - New magazine icon and model for M1911 - Full attachment support for different pistols
24 lines
648 B
C++
24 lines
648 B
C++
class Attachment_Sup45 : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_communityweapons\attachments\suppressor9\suppressor9.p3d";
|
|
picture = "\z\addons\dayz_communityweapons\attachments\suppressor9\data\m_suppressor9_ca.paa";
|
|
|
|
displayName = $STR_DZE_ATTACHMENT_45SUP_NAME;
|
|
descriptionShort = $STR_DZE_ATTACHMENT_45SUP_DESC;
|
|
|
|
class ItemActions
|
|
{
|
|
class AttachToSecondary
|
|
{
|
|
text = $STR_DZ_ATT_ACT_TO_SECONDARY;
|
|
script = "; [_id,0] call player_attachAttachment";
|
|
};
|
|
class AttachToPrimary
|
|
{
|
|
text = $STR_DZ_ATT_ACT_TO_PRIMARY;
|
|
script = "; [_id,1] call player_attachAttachment";
|
|
};
|
|
};
|
|
}; |