Jump to content
DeathF0X

[Solved] Patching Class Land_CanisterFuel_F

Recommended Posts

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×