Jump to content

poole3003

Members
  • Posts

    210
  • Joined

  • Last visited

Everything posted by poole3003

  1. i Haven't been apart of 4 VA's ok my friend and only 1 with him sorry to say im scrapping etihad and might do Middle East Virtual based on all Middle eastern airlines like Oman Air , Etihad , Fly Dubai so so if your interested then lets crack if not please leave
  2. No i have full copyrights to Etihad signed by the Vice chairman of Etihad... so and Collin Woody wanted to remap the VA which became Luxair which they just left so yeah this would be mine and who ever would like to do it with me
  3. Wanting to start this Amazing airline into a new VA i have everything but a domain so far and looking for a worker who would like a joint adventure in makign this airline work PM me or reply to this post
  4. sorry mate that doesnt help me one bit thanks tho
  5. i have added the timetable module and it is all on X1 page how would i get it to go on mulitple pages and also make it move over to the left this is the link http://185.46.120.131/~britisha//index.php/Timetable if code is needed just ask
  6. Does anyone want to start up a Va if pm me and we can sort things out as i have a lot of things just no domain at the moment
  7. would it be possible to get all your current code for this please as i tried it 4 different ways and it still doesn't work
  8. what code did you use for this my friend
  9. this is a link to a test VA please how woud i get the background picture to continue all way down the page http://185.46.120.131/~britisha//index.php/departuretv
  10. i am liking this very much my friend great idead very good is there any way to add the correct price in this for all routes as well like real world flight prices
  11. nott my website i only edit it and work on it lol so not my problem mate Jordans and the CEO of my VA told him but hey dont take notice
  12. he used the header and footer thats it as i will be doing the rest of the code as he is a joke mate and the main page looks hardly anything like theres and once i finished it will be own own and after what your saying you think im going to pay you for something dont think so
  13. yes i am making it my own thanks very much and i would liek it to show the Vatsim number or IVAO whicch ever they have please sir
  14. poole3003

    Vatsim

    i have added a custom profile so pilots can add the vatsim or ivao id how do i get it to show on the pilot roster this its what iy looks like now http://luxairways.org/index.php/pilots and here is the current code <style> .roster_table { font-size:12px; overflow:hidden; border:1px solid #000000; background:#fefefe; margin-bottom:10px; -moz-border-radius:5px; /* FF1+ */ -webkit-border-radius:5px; /* Saf3-4 */ border-radius:5px; -webkit-box-shadow: 0 1px 5px #000000; -moz-box-shadow: 0 1px 5px #fff; margin-top: 10px; width: 100%; } .roster_table td {padding:5px 10px 5px; text-align:center; } .roster_table th {padding-top:15px; text-shadow: 1px 1px 1px #fff; background:white;} /*.tsc_tables1_0 td {border-top:1px solid #e0e0e0; border-right:1px solid #e0e0e0;}*/ .roster_table tr:nth-child(even) {background:#f6f6f6;} .roster_table td.first, th.first {text-align:left} .roster_table td.last {border-right:none;} .roster_table tr.odd-row td { background: white; } .roster_table td { background: silver; padding: 5px; text-align: left; line-height: normal; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0px; -webkit-margin-end: 0px; } .roster_table th { background: #DADADA; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#DADADA'); background: -webkit-gradient(linear, left top, left bottom, from(#E6E6E6), to(#789DAD)); background: -moz-linear-gradient(top, #E6E6E6, #789DAD); width: 200%; } .roster_table tr:first-child th.first { -moz-border-radius-topleft:5px; -webkit-border-top-left-radius:5px; /* Saf3-4 */ } .roster_table tr:first-child th.last { -moz-border-radius-topright:5px; -webkit-border-top-right-radius:5px; /* Saf3-4 */ } .roster_table tr:last-child td.first { -moz-border-radius-bottomleft:5px; -webkit-border-bottom-left-radius:5px; /* Saf3-4 */ } .roster_table tr:last-child td.last { -moz-border-radius-bottomright:5px; -webkit-border-bottom-right-radius:5px; /* Saf3-4 */ } </style> <table border="0" style="vertical-align: top;" cellpadding="4" width="200%" class="roster_table" id="table" cellspacing="0"> <tbody><tr> <th><h1><?php echo $title?></h1></th> </tr> <tr> <td colspan="3"> <div id="content"> <?php $roster = PilotData::getAllPilots(); ?> <?php if(!$roster) { echo 'There are no pilots!'; return; } ?> <table> <table id="tabledlist" class="other"> <thead> <tr> <th width="50px">Pilot ID</th> <th width="300px">Name</th> <th width="120px">Rank</th> <th width="50px">Flights</th> <th width="100px">Hours</th> <th width="100px">HUB</th> <th width="300px">Vatsim ID</th> <th width="50px">Status</th> </tr> </thead> <tbody> <?php foreach($roster as $pilot) { if($pilot->retired == 1) { continue; } ?> <tr> <TD ALIGN="center"> <img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" align="absmiddle" /> <a href="<?php echo SITE_URL?>/index.php/profile/view/<?php echo $pilot->pilotid?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <TD ALIGN="left"> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <TD ALIGN="center"><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></td> <TD ALIGN="center"><?php echo $pilot->totalflights?></td> <TD ALIGN="center"><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <TD ALIGN="center"><?php echo $pilot->hub?></td> <td><div align="center"> <?php $fieldvalue = PilotData :: GetFieldValue ( $pilot -> pilotid , 'Vatsim ID' ); if( $fieldvalue != '' ) { echo '<a href="[url="http://stats.vatsim.net/search_id.php?id="]http://stats.vatsim....arch_id.php?id=[/url]' . $fieldvalue . '" target="_blank">' . $fieldvalue . '</a></a>' ; } else { echo '<img src="[url="http://yourwebsite.com/images/inactiveicon.png"]http://yourwebsite.c...activeicon.png"[/url] width="20" height="18" border="0" alt="" /></a>' ; } ?> </div></td> <TD ALIGN="center"><?php if($pilot->retired == 0) { ?> <img src="[url="http://i105.photobucket.com/albums/m228/Mickpooel89/Untitled_zpsfd5b01bd.png"]http://i105.photobuc...psfd5b01bd.png"[/url] alt="Active" /> <?php } else { ?> <img src="[url="http://i105.photobucket.com/albums/m228/Mickpooel89/Untitled_zps5d4395e6.png"]http://i105.photobuc...ps5d4395e6.png"[/url] alt="Inactive" /> <?php } ?></td> </td> </tr> <?php } ?> </tbody> </table> </div>
  15. right i have inserted the code to the pilot_tpl and nothin is working and that is using the code from Tylor Eddy
  16. if i want to make it where i have all my pilots show up like in there airline and not by hub where would i insert the code and how would the code be something simular to bunoire14
  17. Looking for someone to make a Pilot Centre a very good one and give me a price on it please our VA website is here look forward to answer http://luxairways.org/index.php/
  18. Where would i be able to get this module from or if its not a module i would like to try and make something sort of the same but with my own thing on it this is a link to see http://qantasvirtual.com/index.php/listing
  19. well as i am a pilot and also a staff member at Luxairways.org oyu have robbed them blind as the code you have done i cant chance also you have left it half complete you better complete it like in the next 24hr before i ruin you as there are erros and also bugs needs sorting out
  20. I am offering my Support to new people who want help setting up there VA's i have set up 4 Va's for people over the last few months as well as learning how to skin and do php code i will be offering this to the first 3 people who ask PM me for more information
  21. does anyone tell me please what the hex decimal colour would be that would work with the colours i have on the skin im using please see website link below luxairways.org
  22. close just sorted
  23. please look at this and can you point me to where i make the thing to fit the page http://flyetihadvirtual.com/index.php/Mail/newmail
  24. and where am i inserting this
  25. We here at fly Etihad Virtual are proud to say after much legal battling over the last few weeks i the CAO am happy to announce that we have now added the Maximus Air Cargo division for all you Cargo Egg heads and we are also excited about having an other private or should i say Goverment Division called Abu Dhabi Amiri Flight this will only be open to all serious members of the Va and not just any one i will be appointing a Maximus Cargo manager from a cargo pilto we already have and the other division will be run by senior satff such as the CEO and CAO we then will only then accept people in to those routes and flights. we also have a new fictinal thing the UAE airforce were we will be doing Simulation Hops and also tactical flights and carrier ops and also escort to the Amiri flights over the middle east for more information get in touch
×
×
  • Create New...