Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Attachments/Sup68.hpp
A Man e815d2c7c8 Add Remington ACRs
- Add 96 different ACRs in 4 different colors
- Complete attachment support
- All weapons have a flashlight
- TWS versions and TWS scope are sell only and have the same scope as the L85A2 TWS
- NV versions can switch between NV and Holo, also have military flashlight

Big thanks @Alwarren
2020-02-07 22:31:19 +01:00

21 lines
522 B
C++

class Attachment_Sup68 : CA_Magazine
{
scope = public;
count = 1;
type = WeaponSlotItem;
model = "\z\addons\dayz_communityweapons\attachments\suppressor556\suppressor556.p3d";
picture = "\z\addons\dayz_communityweapons\attachments\suppressor556\data\m_suppressor556_ca.paa";
displayName = $STR_DZ_ATT_SUP68_NAME;
descriptionShort = $STR_DZ_ATT_SUP68_DESC;
class ItemActions
{
class AttachToPrimary
{
text = $STR_DZ_ATT_ACT_TO_PRIMARY;
script = "; [_id,1] call player_attachAttachment";
};
};
};