mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-14 20:22:56 +03:00
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:
@@ -18,6 +18,7 @@
|
||||
|
||||
#include "Sup9.hpp"
|
||||
#include "Sup10.hpp"
|
||||
#include "Sup68.hpp"
|
||||
#include "Sup556.hpp"
|
||||
#include "Sup545.hpp"
|
||||
#include "SupMakarov.hpp"
|
||||
|
||||
21
SQF/dayz_code/Configs/CfgMagazines/Attachments/Sup68.hpp
Normal file
21
SQF/dayz_code/Configs/CfgMagazines/Attachments/Sup68.hpp
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user