DeathF0X 198 Posted May 11, 2016 Hey guys, i need to patch the class "Land_CanisterFuel_F", ive got the following problem, i cant access the class directly(Land_Suitcase_F and other classes work perfectly), the only soloution i found is to abstract the "Land_CanisterFuel_F" and create a new one( no solution ). Works: class CfgVehicles{ class ThingX; class Land_Suitcase_F{ class CfgVehicles{ class ThingX; class Sample_Land_CanisterFuel_F : Land_CanisterFuel_F { Why this didnt work ? class CfgVehicles{ class ThingX; class Land_CanisterFuel_F { Share this post Link to post Share on other sites
hoverguy 177 Posted May 11, 2016 The Land_CanisterFuel_F is found under: class CfgVehicles { class Items_base_F; class Land_CanisterFuel_F: Items_base_F { mapSize = 0.39; author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "Land_CanisterFuel_F"; scope = 2; scopeCurator = 2; displayName = "$STR_A3_cfgVehicles_Land_CanisterFuel_F0"; model = "\A3\Structures_F\Items\Vessels\CanisterFuel_F.p3d"; icon = "iconObject_5x2"; editorSubcategory = "EdSubcat_Tools"; }; }; Does it help? Share this post Link to post Share on other sites