Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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