Jump to content

Fernando

Members
  • Posts

    304
  • Joined

  • Last visited

Posts posted by Fernando

  1. I'm in the final stages of the points system,

    work as follows.

    The Pilot flight booked

    SBGR to KMIA

    Starts with a score of 100/100

    If the pilot to make the flight in perfect condition, will score 100% ..

    But has such penalties.

    Flaps exceeded - 5 points.

    T / A Superior to the maximum allowed - 10 points

    Weight exceeded - 15 Points

    Lights Wrong - 5 Points

    Speed ​​Taxi exceeded - 5 Points

    Exceeded speed below FL100 - 5 Points

    Note: If the flight is less than 75/100 flight will be refused.

    I'm finishing, I will insert some pictures here for everyone commenting,

    I have done a test and is working, I'm just adjusting some details.

    • Like 1
  2. Hello members,

    I worked in the system PilotShop,

    the result was very good!

    My Pilots are satisfied with the system,

    deployed in even the possibility of buying up routes, aircraft,

    cards, among other products.

    Everything for pilots spend their wages,

    the job is done, I am providing photos for you to visualize.

    Though my language is Portuguese

    page_index

    Text (Loja Virtual, Minha Sacola de compras ) = Shop, My Grocery Tote

    Text in Yellow ( Welcome to your online store, here you will find some items for you to buy with his earnings dummy and enjoy the features of our system simple and objective way )

    01.jpg

    List_products

    Text in Yellow ( list roducts associated Shopping Aircraft, valid to point out that the contents advertised here, is virtual character and has no real connection, this store is just entertainment for our members.! )

    02.jpg

    page_pilothome

    Text in Yellow ( You can check out below all the items you bought so far! )

    03.jpg

  3. We would maybe buy a few payware planes and make the points redeemable for those aircraft,

    in addition maybe apparel, ranking, jumpseating, etc.

    t would be a kind of shop?

    I did a system to manage the money

    pilots.

    I am now finalizing a system that withdraws money for errors

    flight procedures, as well as a score from 0/100 for the flight.

    The shop already ready.

    • Like 1
  4. Hello members,

    Today I completed a certificate system automatic for my VA.

    Works to rank through calculation of hours or manual, it will update the data in the certificate automatically.

    It is simple but today my Pilots are satisfied, it is a kind of homage.

    • Like 1
  5. Ok!,

    Solved!

    For all, add this in your pilot_list.tpl (core-templates)

    echo '<a href="http://www.ivao.aero/members/person/details.asp?ID='.$fieldvalue.'" target="_blank"><center><center><img src="/images/yesvat.png" width="20" height="18" border="0" alt="IVAO ID" /></center></a>';
    

    Thanks!

    Open the page Pilot_list.tpl

    and replace the page for this

    style type="text/css">
    <!--
    .style1 {color: #FFFFFF}
    -->
    </style>
    <div class="cufon underline" style="width:auto; padding:5px; margin-top:10px; margin-bottom:10px; border-bottom: 3px solid; font-size: 24px;">Time de Águias </div>
    <?php
    if(!$allpilots)
    {
     echo 'There are no pilots!';
     return;
    }
    ?>
    <table width="100%" border="0" cellspacing="0" cellpadding="1">
     <tbody>
     </tbody>
      <td width="9%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Piloto ID</td>
      <td width="23%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Nome</td>
       <td width="10%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Rank</td>
       <td width="7%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Voos</td>
       <td width="11%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Horas Voadas </td>
       <td width="10%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Ultimo Voo </td>
       <td width="10%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">Status</td>
       <td width="10%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">VATSIM ID</td>
       <td width="10%" height="10" align="center" bgcolor="#e97714" class="roster_header style1">IVAO ID</td>
       <?php
    foreach($allpilots as $pilot)
    {
    /*
     To include a custom field, use the following example:
     <td>
      <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?>
     </td>
     For instance, if you added a field called "IVAO Callsign":
      echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); 
     */
    
     // To skip a retired pilot, uncomment the next line:
     //if($pilot->retired == 1) { continue; }
    ?>
     <tr class="roster_data" style="height: 20px;">
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><img src="<?php echo Countries::getCountryImage($pilot->location);?>"
      alt="<?php echo Countries::getCountryName($pilot->location);?>" /> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><?php echo $pilot->totalflights?></td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><?php
     if($pilot->lastpirep == 0)
     {
      echo 'None';
     }
    
     else
     {
     $report = PIREPData::GetLastReports($pilot->pilotid, 1);
     echo date('d/m/Y', strtotime($report->submitdate));
     }
    ?>    </td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><?php
     if($pilot->retired == '1')
     {echo '<font class="inactive">Inactive</font>';}
        else
        {echo '<font class="active">Active</font>';}
       ?></td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><?php  
     $fieldvalue = PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID');
    
     if($fieldvalue != '')
     {
      echo '<a href="http://www.vataware.com/pilot.cfm?cid='.$fieldvalue.'" target="_blank">'.$fieldvalue.'</a>';
     }
     else
     {
      echo '<font style="color: #FFAA00;">None</font>';
     }
     ?>    </td>
       <td height="10" class="roster_data" align="center" style="border-bottom:1px dotted #CCCCCC"><?php  
     $fieldvalue = PilotData::GetFieldValue($pilot->pilotid, 'IVAO ID');
    
     if($fieldvalue != '')
     {
      echo '<a href="http://www.ivao.aero/members/person/details.asp?ID='.$fieldvalue.'" target="_blank">'.$fieldvalue.'</a>';
     }
     else
     {
      echo '<font style="color: #FFAA00;">None</font>';
     }
     ?>    </td>
       <?php
    }
    ?>
     </tr>
    </table>
    

  6. This is an excellent skin, Thank You!

    I have one issue with bids when this skin is used. Here is an example of a test I did:

    If I use the default "crystal" skin....I go to pilot center, view schedules, then bid on a flight. I then go back to pilot center and select view my bids. The bid I just made appears and is listed correctly.

    But,

    if I use this "GOL2012" skin....I go to pilot center, view schedules, then bid on a flight. When I click on the "add to bid," I get sent to a screen that states "No route passed."

    I would assume some basic code function is not being loading into this template?

    Thanks.

    Edit -

    I did some searching....found one possible solution, but did not pan out....the path to javascript. (http://forum.phpvms....__fromsearch__1) but did not make a difference, still get error.

    I also looked into this possible solution (http://forum.phpvms....ved/#entry49472) ....but still no luck

    No idea where to go now....seems to be major issues when jquery is used with phpVMS....I honestly do not know much about JS or jquery...so at a loss.

    Edit 2 -

    I got the bids to work with this solution (http://forum.phpvms....d-new-tamplete/)...

    Moving

    <?php
    /* This is required, so phpVMS can output the necessary libraries it needs */
    echo $page_htmlhead;
    ?>

    so it is right before the </head> tag.

    BUT...the photos no longer scroll across the screen and the text over the photos is in one long list. I use Firefox browser mostly, but also checked it with IE10.

    I will correct,

    Then post the update.

  7. I have created quite a few customized auto-accept auto-reject scripts for some of my customers. I am now working with Bruno on this. Thanks for the info Luiz!

    Your welcome!!!

    I am creating a system that does score during their flight.

    Example:

    Flaps Wrong - (- 5 points)

    Error on Fuel (-15 points)

    T / D greater than allowed (- 25 points)

    Exceeded speed below FL100 (- 10 points)

    The pilot began his flight with 100/100 points, if errors will occur,

    score decreases, the minimum for approval log should have 75/100.

    Below this score the log is rejected.

    You know, what's phpvms module has the function of automatic or manual approval.

    So I can do the test I've ever done

  8. Bruno has purchased a Custom Application. And asked about an "eFOQA". I told him I have no clue what that is. I think he wants to auto accept or auto reject a pirep. But I still have no clue what a "eFOQA" is.

    Exactly

    He wants a system of self approval example.

    Exceeding undercarriage - Fail

    Exceed Fuel - Fail

    T / D higher than permido VA - Fail

    Pause Flight Simulator - Fail

    Exceeding speed Flaps - Fail

    I plan on making a scoring system with the data above, if the pilot does not reach 75/100 points, the log is deprecated.

    I have a system fitted almost more do not know where the phpvms points to reject or approve automatic logs.

  9. You have two ways to later add the background,

    In the styles.css file, searching the bottom existemte and change, replacing the default photo to your specifications in the same size and height.

    2 If you use dreamweaver to edit the tpl (the pages of the site) you can insert a background

    Open your layout.tpl with the program Dreamweave click Properties page / category / appearance / background image

    Choose a photo on your computer that you want as background

    <!--
    body {
    background-image: url(file:///C|/Users/yourcomupoet/ folder photo /Aviao.png);
    }
    

    Change to

    <!--
    body {
    background-image: url(<?php echo SITE_URL?>/lib/skins/pt/images/Aviao.png);
    }
    

    Ai just send the photo to your skin and edit the photo link pointing to your server.

  10. Hey Guys,

    I'm working on a new site, and one annoyance I'm having is that the session doesn't stay alive i.e. i don't stay logged on. On my main site all works fine and I never have to log in, but here I think after half an hour or so it kicks me out again. Specially annoying if I do some admin-work and when I submit it doesn't actually submit :(

    Anyone can shed some light on this?

    The time that you provide for your member to get online, you can adjust the file Local.config.php

    lines 59 and 60

    # The StatsData::UserOnline() function - how many minutes to check
    Config::Set('USERS_ONLINE_TIME', 20);
    

    20 = 20 minutes

    You can change these values ​​to what they find convenient

  11. Hi guys, how to configure eFOQA in the kACARS?

    Bruno,

    The kacars is customized by jeff

    carrying on when you purchase has to choose what you want, he will pass the cost of the custom program and the values ​​of the system he can deploy this kacars for you!

    example:

    Only kacars custom is $ 40, when you ask you should ask him to aprovaçãode automatic logs.

    Ai if you pass will pass according to your restrictions, flaps, fuel, T / D and so on.

    visit the site.

    http://fs-products.net/

    recommend sending an e-mail requesting further information about the program,

    it will serve you very well, I have kacars custom is very good job of it.

    email: jeffrey.kobus@fs-products.net

    Good luck

×
×
  • Create New...