frederf 0 Posted March 5, 2007 OLD CONFIG.CPP (with circular error) Quote[/b] ]class CfgPatches { class CAWeapons { units[] = {}; weapons[] = {"M24d"}; requiredVersion = 0.100000; requiredAddons[] = {"CAData","CACharacters","CAWeapons"}; }; }; class cfgWeapons { /*extern*/ class M24; class M24d: M24 { model = "\ca\weapons\M24"; picture = "\CA\weapons\data\equip\w_m24_ca.paa"; }; }; NEW CONFIG.CPP (error fixed) Quote[/b] ]class CfgPatches { class CAWeapons { units[] = {}; weapons[] = {"M24d"}; requiredVersion = 0.100000; requiredAddons[] = {}; }; }; class cfgWeapons { /*extern*/ class M24; class M24d: M24 { model = "\ca\weapons\M24"; picture = "\CA\weapons\data\equip\w_m24_ca.paa"; }; }; Redownload available from original link. Sorry for the error. It worked in 1.02. Share this post Link to post Share on other sites
Yossarian 0 Posted March 5, 2007 Great! Thanks very much Frederf. To install, we just put the .pbo in the AddOn folder? Share this post Link to post Share on other sites
frederf 0 Posted March 6, 2007 You can either put it in C:\Games\ArmA\AddOns or you can put it in a folder in C:\Games\ArmA\ModName\AddOns and make a shortcut to your ArmA.exe with the -mod ModName modifier. Share this post Link to post Share on other sites