hi everybody   i found the doc about the possibility of placing custom airports on maps since the jets dlc > https://community.bistudio.com/wiki/Dynamic_Airport_Configuration   is it possible to do this via script? i.e. adding this functionality to a invisible helipad?  i would like to add an airport in one of the realworld pmc-terrains somewhere on flat ground and add some base and airport structures for some jet missions.   or is ist only possible with building an addon?   sorry for the noob questions and thanx for any clearence!         !!! UPDATE: Yes, it is possible to place a dynamic airport using a gamelogic as airport center. the one, that is used for the carrier is predefined in arma3 config!   "DynamicAirport_01_F"   example howto in editor:   1. place a gamelogic at an empty place 2. copypaste this into the gamelogic init field : _dynamicAirport1 = DynamicAirport_01_F" createVehicle position this; plane01 landAt _dynamicAirport1; 3. place plane with ki-pilot 500m above terrain and name it plane01   now watch the plane landing at your airport.   i found the info here: https://community.bistudio.com/wiki/landAt     have fun with testing and building your own landable airports  ;)