Sorry Jon was going to post the file but got distracted in something else
Here you go, just change the field value for your custom created field and it will pull what ever you like, as you can see this is outside of phpvms and site in the root folder.
Just make sure you define your actual path of the file in the include and yes it does need the //
<?php
//error_reporting(E_ALL);
//ini_set('display_errors', 'on');
include 'YOURSITES_ROOT_PATH/public_html//core/codon.config.php';
$allpilots = PilotData::getAllPilots();
foreach($allpilots as $pilot)
{
echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID');
echo '<br />';
}
?>