Displaying Pilots Logged In

Is there any mod that displays the pilots names that are logged in?

Nabeel built it into the beta -  ;D

From the default frontpage_main.tpl in the new beta

<?php
/* $usersonline also has the list of users -

really simple example
Or if you're not on the frontpage:
$usersonline = StatsData::UsersOnline();

*/

if (!$usersonline)
{ }
else
{
foreach($usersonline as $pilot)
{echo "{$pilot->firstname} {$pilot->lastname}<br />";}
}
?>

Thank you!