Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Rifles/AKS.hpp
AirwavesMan 9675e2301f Add more _DZ versions of arma 2 weapons
All Arma 2 weapons except the TWS and launchers have a _DZ version now. So it is no longer confusing which weapon version should be spawned. Always use the _DZ versions.
2021-01-09 11:14:37 +01:00

14 lines
335 B
C++

class AKS_Gold_DZ: AKM_DZ {
displayName = $STR_DZ_WPN_AKS_GOLD_NAME;
model = "\RH_aks\RH_aks47g.p3d";
picture = "\RH_aks\inv\aks47g.paa";
};
class AKS_Silver_DZ: AKM_DZ {
displayName = $STR_DZ_WPN_AKS_SILVER_NAME;
model = "\RH_aks\RH_aks47s.p3d";
picture = "\RH_aks\inv\aks47s.paa";
};
class AK_47_S;
class AKS_DZ: AK_47_S {};