Drongo69 117 Posted February 5, 2014 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
das attorney 858 Posted February 5, 2014 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
Drongo69 117 Posted February 5, 2014 That did the trick, thank you very much :) Share this post Link to post Share on other sites