Public Function

Does anyone know if there is a useable public function to get the rate of pay for a flight and show it on the Briefing page? I have searched and came up blank.

I am pretty sure that if there is, I can get it to show on the page.

Thanks in advance either way.

Ray

You can use: SchedulesData::findFlight(string $flightnum)

For example:

$flight=SchedulesData::findFlight($flightnum);
echo $flight->price;

Imagine that. I never thought of looking there. I looked everywhere but. Thanks for pointing that out.