flyalaska Posted December 6, 2009 Report Share Posted December 6, 2009 Is there any mod that displays the pilots names that are logged in? Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted December 7, 2009 Administrators Report Share Posted December 7, 2009 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 />";} } ?> Quote Link to comment Share on other sites More sharing options...
flyalaska Posted December 7, 2009 Author Report Share Posted December 7, 2009 Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.