hi there i'm lost trying to do my first addon. could anybody help me, to make it work?   short:
i would like to create a dynamic airport addon, which i described in this post:   now i would like to copy the original class "DynamicAirport_01_F" from "Jets DLC" which is the carrier runway for planes with landing hook. but i want a runway with value "isCarrier = 0;" for all planes landable without landing hook.
i've read some config threads, read the guides, viewed some other configs... but my addon will not work and i can't find it in arma3 config viewer. i've written the config.cpp , packed it in my "DynamicAirport22.pbo", into an "addon" folder inside an "@DynamicAirport22" folder. aktivated in the Launcher.   my config.cpp:
  class CfgVehicles { class All; class Static; class Building; class NonStrategic; class AirportBase; class DynamicAirport_01_F; class DynamicAirport_22_F : DynamicAirport_01_F { scope = 1; displayName = "Dynamic Airport 22"; // 22 just for using an unused name DLC = "Jets"; isCarrier = 0; }; };   a gamelogic with init > "dynamicAirport1 = "DynamicAirport_01_F" createVehicle position this;"  works fine and an f/a-181 land lands there with init > "this landAt dynamicAirport1;"   ...also the runway is visible in map view. same testmission with my "DynamicAirport_22_F" doesn't work. no plane landing and no visible runway in map view.     i have no idea, what i'm doing wrong. sorry for being a noob.   thanks for any help!!!