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
According to them the guns can have the ammo loaded, but do nothing when they are fired. I don't know if this means no sound and the guns simply do not shoot, or if that means the guns make a sound but no rounds are fired out of the barrel. When I have time tomorrow I will do some testing and post a update on the bug.
Cfgmagazine thing is pointing to something that actually is fixed but it doesn't register.
If you are referring to "cannot find CFGmagazines '.'" I cannot find the cause. everything seems syntactically correct and that message doesn't actually point to anything in particular. If you can go through ALL the configs for ALL the .PBO's in this UAS release and find the issue, fix it, then message me it would be super. Until then you are gonna have to ignore it.
remove the two rifles from Massi that had an issue and report back. I still don't really understand your problem fully. Also make sure UAS is loaded with CBA_A3. you might have had an issue because I forgot to add CBA_A3 to the dependency list. Please try to repeat the error and give a more in depth description of the problem. Thanks!
I found the problem. The M634 is gone. I dunno the original code, sorry. It is going to take awhile to find an old version of UAS and find the code for the M634 ammo type. If we cannot find it we'll delete the magazine for the M634.
Edit: Fixed and added back in.
in your config, rpk74 in RHS is 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();
--------------------------
for vanilla type 115 (under barrel .50 BW)
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"};
};
};
same goes to "arifle_ARX_blk_F" and "arifle_ARX_hex_F".