mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-04-17 09:53:21 +03:00
New config variable dayz_toolBreaking
Tool breaking is disabled by default. Also made all scripts use Epoch sledge, which is a different model from vanilla sledge. PK_DZ was a duplicate of the new PKM_DZ.
This commit is contained in:
@@ -7,7 +7,12 @@ class DMR_DZ : DMR
|
||||
|
||||
magazines[] = {20Rnd_762x51_DMR};
|
||||
|
||||
class Single;
|
||||
class Single : Single
|
||||
{
|
||||
reloadTime = 0.6;
|
||||
recoil = "recoil_single_primary_4outof10";
|
||||
recoilProne = "recoil_single_primary_prone_4outof10";
|
||||
};
|
||||
|
||||
visionMode[] = {"Normal"};
|
||||
|
||||
@@ -16,7 +21,9 @@ class DMR_DZ : DMR
|
||||
Attachment_Ghillie = "DMR_Gh_DZ";
|
||||
};
|
||||
};
|
||||
|
||||
class DMR_SKN : DMR_DZ {};
|
||||
|
||||
class DMR_Gh_DZ : DMR_DZ
|
||||
{
|
||||
model = "z\addons\dayz_communityweapons\dmr\dmr_ghillie.p3d";
|
||||
|
||||
@@ -56,6 +56,7 @@ class FNFAL_ANPVS4_DZ : FN_FAL_ANPVS4
|
||||
{
|
||||
modes[] = {Single};
|
||||
};
|
||||
|
||||
class FN_FAL_ANPVS4_DZE:FN_FAL_ANPVS4 {
|
||||
visionMode[] = {"Normal", "NVG"};
|
||||
visionMode[] = {"Normal", "NVG"};
|
||||
};
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
class BAF_L110A1_Aim_DZE:BAF_L110A1_Aim {
|
||||
type = "1";
|
||||
};
|
||||
class L110A1_CCO_DZ : BAF_L110A1_Aim
|
||||
{
|
||||
model = "z\addons\dayz_communityweapons\l110a1\l110a1_cco.p3d";
|
||||
@@ -62,4 +59,17 @@ class L110A1_DZ : L110A1_CCO_DZ
|
||||
};
|
||||
|
||||
class ItemActions {};
|
||||
};
|
||||
|
||||
class BAF_L110A1_Aim_DZE:BAF_L110A1_Aim { //Slightly different scope from L110A1_CCO_DZ, otherwise identical
|
||||
type = "1";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class RemoveCCO
|
||||
{
|
||||
text = $STR_DZ_ATT_CCO_REM;
|
||||
script = "; ['Attachment_CCO',_id,'L110A1_DZ'] call player_removeAttachment";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -49,6 +49,7 @@ class M240_Holo_DZ : M240_CCO_DZ
|
||||
};
|
||||
};
|
||||
};
|
||||
class m240_scoped_EP1_DZE:m240_scoped_EP1 {
|
||||
type = "1";
|
||||
|
||||
class m240_scoped_EP1_DZE:m240_scoped_EP1 { //has m145 scope
|
||||
type = "1";
|
||||
};
|
||||
@@ -60,11 +60,21 @@ class M249_Holo_DZ : M249_CCO_DZ
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class M249_EP1;
|
||||
class M249_EP1_DZ:M249_EP1 {
|
||||
class M249_EP1_DZ:M249_EP1 { //Iron sight with shorter stock (different from M249_DZ)
|
||||
type = "1";
|
||||
|
||||
class Attachments
|
||||
{
|
||||
Attachment_CCO = "M249_CCO_DZ";
|
||||
Attachment_Holo = "M249_Holo_DZ";
|
||||
};
|
||||
|
||||
class ItemActions {};
|
||||
};
|
||||
|
||||
class M249_m145_EP1;
|
||||
class M249_m145_EP1_DZE:M249_m145_EP1 {
|
||||
type = "1";
|
||||
type = "1";
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
class PKM_DZ : PK
|
||||
class PKM_DZ : PK //Iron sight PKM
|
||||
{
|
||||
type = WeaponSlotPrimary;
|
||||
|
||||
@@ -17,4 +17,8 @@ class PKM_DZ : PK
|
||||
{
|
||||
reloadTime = 0.08;
|
||||
};
|
||||
};
|
||||
|
||||
class Pecheneg_DZ: Pecheneg { //PKP with long range scope
|
||||
type = "1";
|
||||
};
|
||||
Reference in New Issue
Block a user