mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
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.
24 lines
490 B
C++
24 lines
490 B
C++
class PKM_DZ : PK //Iron sight PKM
|
|
{
|
|
type = WeaponSlotPrimary;
|
|
|
|
model = "z\addons\dayz_communityweapons\pkm\pkm.p3d";
|
|
displayName = $STR_DZ_WPN_PKM_NAME;
|
|
|
|
magazines[] = {100Rnd_762x54_PK};
|
|
|
|
weaponInfoType = "RscWeaponZeroing";
|
|
discreteDistance[] = {100,200,300,400,500,600,700,800,900,1000};
|
|
discreteDistanceInitIndex = 2;
|
|
|
|
modes[] = {FullAuto};
|
|
|
|
class FullAuto : manual
|
|
{
|
|
reloadTime = 0.08;
|
|
};
|
|
};
|
|
|
|
class Pecheneg_DZ: Pecheneg { //PKP with long range scope
|
|
type = "1";
|
|
}; |