wld427 1705 Posted October 7, 2009 I get a strange error when playing with my weapons in the armory. Addon pracs_troops (entry PRACS_20Rnd_762x51) not found in the list of active addons. Addon pracs_troops (entry PRACS_g3a4sp) not found in the list of active addons. yet the weapons are right there in the config and they show up and work fine in game. They just seem to kick up this message. Share this post Link to post Share on other sites
W0lle 1052 Posted October 7, 2009 I get a strange error when playing with my weapons in the armory. Addon pracs_troops (entry PRACS_20Rnd_762x51) not found in the list of active addons. Addon pracs_troops (entry PRACS_g3a4sp) not found in the list of active addons. yet the weapons are right there in the config and they show up and work fine in game. They just seem to kick up this message. I have that pretty often, esp. in that 'other, expensive simulation'. Nothing I would worry about. The missions work perfectly even though that message appears in the rpt. Share this post Link to post Share on other sites
.kju 3245 Posted October 7, 2009 Ofc is something to worry about. BAD config definition that is! You have to define your new cfgVehicle and cfgWeapons classes as part of cfgPatches! class CfgPatches { class MyTag_cfgP_Class { units[] = {"MyTag_UnitName1",...,"MyTag_UnitNameX"}; weapons[] = {"MyTag_WeaponName1",...,"MyTag_WeaponNameX"}; Share this post Link to post Share on other sites
Snake Man 407 Posted October 7, 2009 Okay so just to be sure, the: "Addon <NAME> (entry <NAME>) not found in the list of active addons." error is caused by the classes being missing from cfgPatches? Share this post Link to post Share on other sites
.kju 3245 Posted October 7, 2009 (edited) The armory parses the config for vehicles and weapons. When objects are created, yet not correctly defined in the configs, the message appears. Edited October 9, 2009 by kju Share this post Link to post Share on other sites
wld427 1705 Posted October 8, 2009 kju you ar emy hero thanks! Share this post Link to post Share on other sites
.kju 3245 Posted October 9, 2009 No worries. Just to add some further explanation why it is important to do this right. It is not about the rpt. Instead this can cause savegame, mp mission loading issues, on screen "addon missing" message and break dynamic scripts reading the config for units. Share this post Link to post Share on other sites
Snake Man 407 Posted October 9, 2009 Thank God for Mikero and his FixAddons! Amen brotha! :) Share this post Link to post Share on other sites