Jump to content

NAdams

Members
  • Posts

    32
  • Joined

  • Last visited

Posts posted by NAdams

  1. Hey,

    I thought i was blind and couldn't figure it out, but I searched here and saw someone else was having the same problem and never got their answer

    http://forum.phpvms.net/topic/3829-removing-an-added-airline/page__p__25932__hl__%2Bdeleting+%2Bairports__fromsearch__1#entry25932

    So, my question is.....is there a way to delete the Airports, Fleet, and Airlines from the admin panel that were added. We are switching some of our destination airports and fleet around and I would

    like to delete some of it so it doesn't show up in our airports list.

    - Nick

  2. This just looks low res. A simple redo with the resolution set to 300 should help that to shine. ;)

    Cool, glad you liked!

    i think what i did is i had the tolerance set too high when i used the color bucket to fill in the background color. if setting the tolerance lower doesn't fix it, i'll try the resolution thing you suggested, thanks!

    - Nick

  3. alright, i got everything working like it should

    in addition to controlling the categories, i just used the same code and changed it for the downloads, now i can control the individual downloads based in rank also

    thanks so much for the help guys

    - nick

    <div class="mcright">
    <br>
    
    <p><img alt="" src="http://x-usairways.com/images/downloads.png" /></p>
    <br>
    <br>
    <?php 
    if(!$allcategories)
    {
    echo 'There are no downloads available!';
    return;
    }
    
    foreach($allcategories as $category) {
     // If this is the category scenery, and their rank level is less than 2, then don't show this
     if ($category->name == 'Scenery' && Auth::$userinfo->ranklevel < 2) {
       continue;
     }
    // If this is the category add-ons, and their rank level is less than 2, then don't show this
     if ($category->name == 'Add-Ons' && Auth::$userinfo->ranklevel < 2) {
       continue;
     }
    
    
    
    
    ?>
    <p><h2><strong><?php echo $category->name?></strong></h2></p>
    <ul>
    
    <?php	
    # This loops through every download available in the category
    $alldownloads = DownloadData::GetDownloads($category->id);
    
    if(!$alldownloads)
    {
    	echo 'There are no downloads under this category';
    	$alldownloads = array();
    }
    
    foreach($alldownloads as $download)
    {
               // If this is the download a319, and their rank level is less than 2, then don't show this
     if ($download->name == 'A319' && Auth::$userinfo->ranklevel < 4) {
       continue;
     }
    
    
               ?>
    <li>
    	<a href="<?php echo url('/downloads/dl/'.$download->id);?>">
    		<?php echo $download->name?></a><br />
          <?php echo $download->description?><br />
           </li>
    <?php
    }
    ?><br />
    </ul>
    <?php
    }
    ?>
    </div>

  4. i got one question...

    i got everything set up and in the proper places...any everything looks the way it should.....i upload the screenshot and when i go to approve it, it says that none are waiting to be approved

    the file size is small on the one i'm uploading, the pics folder is writable

  5. yep, that's exactly what i'm trying to do

    I want to control what downloads they can get at certain ranks. so pilots don't sign up for the VA and download all the stuff and then jump ship

    i'm not sure how it works in the FS world, but we all run xplane and it happens pretty often, pilots just see what they can get and then leave

    we maintain our own fleet and design our own scenery, so we only want to make that available to pilots who are commited to the VA and actually have to "fly" to rank up and get more stuff

  6. here is my code for the downloads_list.tpl, where would be the best place to insert the code above? or does it go somewhere else

    also, for the numerical value of the ranking list, if i had 8 ranks, then it would be rank level - 1, rank level-2, and so on....

    <div class="mcright">
    <br>
    <p><img alt="" src="http://x-usairways.com/images/downloads.png" /></p>
    
    <?php 
    if(!$allcategories)
    {
    echo 'There are no downloads available!';
    return;
    }
    
    foreach($allcategories as $category)
    {
    ?>
    <p><h2><strong><?php echo $category->name?></strong></h2></p>
    <ul>
    
    <?php	
    # This loops through every download available in the category
    $alldownloads = DownloadData::GetDownloads($category->id);
    
    if(!$alldownloads)
    {
    	echo 'There are no downloads under this category';
    	$alldownloads = array();
    }
    
    foreach($alldownloads as $download)
    {
    ?>
    <li>
    	<a href="<?php echo url('/downloads/dl/'.$download->id);?>">
    		<?php echo $download->name?></a><br />
          <?php echo $download->description?><br />
             <em>Downloaded <?php echo $download->hits?> times</em></li>
    <?php
    }
    ?><br />
    </ul>
    <?php
    }
    ?>
    </div>
    

  7. i.e.

    here is an example of the same flight at the same time, the first picture is of our live map on our site, the second is from va central's live map, giving the infomation i am missing, using the same acars system

    post-863-045777000 1292194442_thumb.png

    post-863-016427300 1292194467_thumb.png

  8. yea,

    i would love to use kacars, but we are an xplane exclusive VA, so our only option is XACARS

    also, when we are testing flights, it shows up on the VA Central Live Map, and show the distance/time and status there, so i know it works

    with xacars, and it use to work before, just not now, and i am having a hard time figuring it out......

  9. Hey Guys,

    I have done some searching and couldn't find if anyone else has had this problem

    On our ACARS map the "Status" and the "Distance/Time Remaing" information is not displaying correctly. I thought it was working at one time....

    It always show the status as "enroute" and the D/TR as "0"

    I have went back to the original template and copied it back over to the skins folder to start from scratch, and it still does not work properly. I go to the VA Central page and our info

    is correct on their live map, so I know the information being sent is correct, just not on our page.....any suggestions??

    Thanks

    - Nick

  10. I think this topic has been brought up before, but I have searched the forums up and down and couldn't

    find it anywhere...

    Is there a way to tie the downloads to rank, so the pilot can't download a certain plane until he reaches a certain rank. Even though the dowloads are there, they can't access them

    until they reach the rank that the download is attached to.

×
×
  • Create New...