Jump to content
eggbeast

Fix for: A3\data_f\proxies\weapon_slots\MUZZLE) couldn't found!

Recommended Posts

RPT spams this constantly

proxy object for given proxyName(\A3\data_f\proxies\weapon_slots\MUZZLE) couldn't found!

 

anyone got a known fix?

 

in our mod we declare base classes outside of cfgweapons like this:

class MuzzleSlot: SlotInfo
{
    linkProxy = "\A3\data_f\proxies\weapon_slots\MUZZLE";
    displayName = "$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
    compatibleItems[] = {"uns_s_M14","uns_s_M16","uns_s_MAC10","uns_s_M3a1","uns_s_M45","uns_s_UZI","uns_s_Sten","uns_s_M1911","uns_s_PPK","uns_s_PBS1","uns_s_APS","uns_s_mat49"};

};

then in cfgweapons we have

 

	class PistolCore;
	class Pistol: PistolCore
	{
		class WeaponSlotsInfo
		{
			class CowsSlot;
			allowedSlots[] = {801,701,901};
			holsterOffset = "holster";
			holsterScale = 1;
		};
	};
	
	class Pistol_Base_F: Pistol
	{
		class WeaponSlotsInfo: WeaponSlotsInfo
		{
			class MuzzleSlot;
			class CowsSlot;
			allowedSlots[] = {801,701,901};
			holsterOffset = "holster";
			holsterScale = 1;
		};
	};
	class RifleCore: Default{};
	class Rifle: RifleCore
	{
		class WeaponSlotsInfo
		{
			mass = 2;
			class MuzzleSlot;
			class CowsSlot;
			class PointerSlot;
			allowedSlots[] = {901};
		};
	};
	class Rifle_Base_F: Rifle
	{
		class ItemInfo;
		class GunParticles;
		class GunClouds;
		class GunFire;
		class WeaponSlotsInfo: WeaponSlotsInfo
		{
			mass = 2;
			class MuzzleSlot;
			class CowsSlot;
			class PointerSlot;
			allowedSlots[] = {901};
		};
	};

and then all our weapons inherit from these declared (unmodified) bases.

 

so i noticed a LOT of people posting RPTs containing this line

proxy object for given proxyName(\A3\data_f\proxies\weapon_slots\MUZZLE) couldn't found!

 

suppressors clearly work.

just wondering if the error is fixable or should we continue to ignore it?

 

Share this post


Link to post
Share on other sites

FIXED -

guns need a viewpilot LOD

or the game goes bananas

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×