soldierman 16 Posted June 14, 2014 Im trying to add the backpacks from CLF And Task force radio to a custom ammo box. Im doing this through a config file, i have tried using the class TransportWeapons and TransportItems to add the backpacks. If i put it in items i dont get any errors but the backpacks still dont show. Any help would be appreciated. Share this post Link to post Share on other sites
teeha 22 Posted June 14, 2014 Just replace the ITEMCLASSNAMEHERE with whatever the backpack class name is and replace the BOXCLASSNAMEHERE with whatever you want the classname of the box to be. enum { DESTRUCTENGINE = 2, DESTRUCTDEFAULT = 6, DESTRUCTWRECK = 7, DESTRUCTTREE = 3, DESTRUCTTENT = 4, STABILIZEDINAXISX = 1, STABILIZEDINAXESXYZ = 4, STABILIZEDINAXISY = 2, STABILIZEDINAXESBOTH = 3, DESTRUCTNO = 0, STABILIZEDINAXESNONE = 0, DESTRUCTMAN = 5, DESTRUCTBUILDING = 1, }; class CfgPatches { class box_config { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {"A3_Characters_F_BLUFOR"}; }; }; class CfgVehicles { class NATO_Box_Base; class BOXCLASSNAMEHERE: NATO_Box_Base { scope = 2; vehicleClass = "Ammo"; displayName = "BOXNAMEHERE"; model = "\A3\weapons_F\AmmoBoxes\WpnsBox_F"; icon = "iconCrateWpns"; class TransportWeapons{}; class TransportMagazines{}; class TransportItems { class _xx_ITEMCLASSNAMEHERE { name = "ITEMCLASSNAMEHERE"; count = 10; //Item Count Here }; class _xx_ITEMCLASSNAMEHERE { name = "ITEMCLASSNAMEHERE"; count = 10; //Item Count Here }; class _xx_ITEMCLASSNAMEHERE { name = "ITEMCLASSNAMEHERE"; count = 10; //Item Count Here }; }; }; }; Share this post Link to post Share on other sites
soldierman 16 Posted June 15, 2014 Doesnt appear to work for me. Again , No errors but no backpacks. Tried with Vanilla arma backpacks and CLF + TFR radios. Share this post Link to post Share on other sites
teeha 22 Posted June 15, 2014 Can you show me your config? Share this post Link to post Share on other sites
soldierman 16 Posted June 15, 2014 http://pastebin.com/6BGkWAz4 . Ammo Box in question starts at 707. First backpack radio at 1088. Share this post Link to post Share on other sites
fight9 14 Posted June 19, 2014 I think you need to use the transportBackpack class instead of items. Share this post Link to post Share on other sites
soldierman 16 Posted June 20, 2014 Thank you very much. Got it working in the end Share this post Link to post Share on other sites