Ricardo Sousa Posted February 27, 2021 at 04:07 AM Posted February 27, 2021 at 04:07 AM Hello, I am experimenting with creating plugins, and I am having a hard time knowing where to access all known flightplans to euroscope. I want to iterate through them to read and modify data from the CFlightPlan class. Ideally I actually only want to iterate through a certain departure airport fpl list, but I don't think that's possible. I had a dumb attempt at it with the loop bellow, but obviously that was never going to work while ( TRUE ) { fplNext = FlightPlanSelectNext(fpl2); if (!fplNext.IsValid()) { break; } So how do I create an array with for example all departing fpls from LPPT? Link to comment Share on other sites More sharing options...
Recommended Posts