Jump to content
Sign in to follow this  
Drongo69

No entry 'bin\config.bin/CfgVehicles/I_soldier_F.woman'.

Recommended Posts

I am getting the error "No entry 'bin\config.bin/CfgVehicles/I_soldier_F.woman'." with my ME Irregulars mod. Arma 3 doesn't even have women in it, so God knows how this error is even possible. In short the inheritance looks likes this:

class cfgVehicles
{
class Man;
class I_soldier_f: Man
{
	class EventHandlers;
};

class DRI_Base: I_soldier_f
{ SNIP };
...

I can post the entire config if needed, though it is pretty long. Does anyone know the cause of this bug?

Share this post


Link to post
Share on other sites

I think you want to be inheriting from I_Soldier_base_F, and not Man.

Like:

class cfgVehicles 
{ 
   class I_Soldier_base_F; 
   class I_soldier_f: I_Soldier_base_F 
   { 
       class EventHandlers; 
   }; 

   class DRI_Base: I_soldier_f 
   { SNIP }; 
...

Untested but should work okay.

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
Sign in to follow this  

×