mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 13:26:39 +03:00
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.
14 lines
335 B
C++
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 {}; |