Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://armedassault.fandom.com/wiki/Type_115#Magazine_compatibility
in your config, looks like this
class arifle_ARX_base_F : Rifle_Base_F
{
class Secondary : arifle_MX_F
{
magazines[] = {"UAS_BASE_50Beowulf_ARX_10Rnd"};
magazineWell[] = {"UAS_BASE_50Beowulf_Rifle"};
};
};
should changed to this:
class arifle_ARX_base_F : Rifle_Base_F
{
class Secondary: Rifle_Base_F
{
magazines[] = {"UAS_BASE_50Beowulf_ARX_10Rnd"};
magazineWell[] = {"UAS_BASE_50Beowulf_Rifle"};
};
};
in short, "class Secondary : arifle_MX_F " shoud correct to "class Secondary: Rifle_Base_F".
same goes to "arifle_ARX_blk_F" and "arifle_ARX_hex_F".
Some issues of Class Inheritance in the "UAS_Base_Compat_Tweak/config.cpp"
in your SVO-Ammo config, rpk74 in RHS is set like this.
class rhs_weap_rpk74 : rhs_weap_pkp {};
seems RHS has changed this part to:
class rhs_weap_rpk_base: Rifle_Long_Base_F {};
class rhs_weap_rpk74_base: rhs_weap_rpk_base {};
class rhs_weap_rpk74: rhs_weap_rpk74_base {};
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2881655712
plz continue the excellent work