Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Jeff

  1. in that case, he'll just have to brush up on some HTML coding then. Here is an example of how you would place it in there.

    <table>
     <thead>
         <th>Pilot ID</th>
     </thead>
       <tbody>
         <td><?php echo $pilotcode; ?></td>
     </tbody>
    </table>

    • Like 1
  2. Pilot Name

    <?php echo $userinfo->firstname . ' ' . $userinfo->lastname; ?>

    Pilot ID

    <?php echo $pilotcode; ?>

    Pilot Rank

    <?php echo $userinfo->rank;?>

    To show the rank image instead

    <img src="<?php echo $userinfo->rankimage ?>" />

    Pilot Hub

    <?php echo $userinfo->hub;?>

    Pilot Flown Hours

    <?php echo $userinfo->totalhours; ?>

    Pilot Total Flights

    <?php echo $userinfo->totalflights?>

    • Like 2
  3. You can also just use this code (without using this module) to display the Avg. Landing rate of all your flights.

    <strong><font color="#FF0000">Avg. Landing Rate: </font></strong><font color="green"><?php echo ''.round(TouchdownStatsData::pilot_average($userinfo->pilotid), 2); ?></font>

    This works in the profile_main.tpl as well as the pilot_public_profile.tpl

  4. I have a very nuisance pecker-head that keeps registering. I need to have his IP address blocked. Is there a way to do this?

    Every time I delete his registration, he signs up with a new username, but it is always in the same format. This time his username is RerminiErer RerminiErerOC. It is really starting to tick me off as it has happened 15 times in the last 4 days now. Can someone help me? Nabeel, if you are reading this, I am on Fivedev. If I need to open a support ticket on this problem, I will. Someone please send help my way ASAP.

  5. I am wanting to start scheduling flights in and out of water airports. My VA only allows the usage of kAcars (custom) for flight submission. I was wondering how Acars treats water landings. Does it treat them like any other land based airport, or does it not function what-so-ever. I am asking VA owners that use the custom kAcars program and have airports scheduled in the water.

  6. You could also state in the registration, that if they choose a hub, that hub may not be available in order to make your hubs more equally filled. If they still want to be in that hub after registration that they can wait until that hub opens up, and they can sign up for it. That would come in handy for the Hub Transfer add-on found in these forums.

×
×
  • Create New...