Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Rifles/M16A2.hpp
2016-08-16 00:35:13 +02:00

34 lines
485 B
C++

//no attachments on either of the M16A2s.
class M16A2_DZ : M16A2
{
/*
magazines[] =
{
30Rnd_556x45_Stanag,
30Rnd_556x45_StanagSD
};
*/
class Attachments
{
Attachment_M203 = "M16A2_GL_DZ";
};
};
class M16A2_GL_DZ : M16A2GL
{
/*
magazines[] =
{
30Rnd_556x45_Stanag,
30Rnd_556x45_StanagSD
};
*/
class ItemActions
{
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'M16A2_DZ'] call player_removeAttachment";
};
};
};