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
This commit is contained in:
A Man
2020-02-07 22:31:19 +01:00
parent cf4889f903
commit e815d2c7c8
14 changed files with 3209 additions and 1 deletions

View File

@@ -18,6 +18,7 @@
#include "Sup9.hpp"
#include "Sup10.hpp"
#include "Sup68.hpp"
#include "Sup556.hpp"
#include "Sup545.hpp"
#include "SupMakarov.hpp"

View File

@@ -0,0 +1,21 @@
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";
};
};
};