Jump to content

freshJet

Members
  • Posts

    1470
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by freshJet

  1. I'm getting desperate for this now and I'd do it myself but I'm far from talented. I'd be ever so grateful if someone would paint the FFG Saab 340 in the Flybe (Loganair) livery. I do not mind what the reg is - as long as it's an active one. You can download the paintkit here. Thanks in advance.
  2. Can't you create your own livery rather than steal MyTravel's?
  3. Report them to COPPA - that'll give the parents something to shout about
  4. Of course The data is sent as follows: http://www.vatsim.net/fp/?2=BAW444 Results in this because the 2 in the URL refers to field 2. http://www.vatsim.net/fp/?2=BAW123&3=A320 Results in this because the 2 in the URL refers to field 2 and the 3 refers to field 3. So, in your schedule briefing, you can make it: http://www.vatsim.net/fp/?2=<?php echo $schedule->code.''.$schedule->flightnum;?>&3=<?php echo $schedule->aircraft;?> Remember to try and fill in as many fields as possible for the pilots, so that they have less filling out to do. Then, make this a link for your pilots: <a href="http://www.vatsim.net/fp/?2=<?php echo $schedule->code.''.$schedule->flightnum;?>&3=<?php echo $schedule->aircraft;?>">VATSIM Prefile</a> Then click the link in your schedule briefing and it will bring up the relevant data Mine currently does 10 of the 16 fields. You can add even more if you have the VATSIM ID custom field, as you can then get their ID too.
  5. Simpilot's status badges http://www.simpilotgroup.com/index.php/home/statusbadge
  6. Can't seem to find it now but it's definitely not allowed.
  7. Yeah you'll need to edit the vatsim.tpl file. To get the number of pilots you need to use: <?php MainController::Run('Vatsim', 'count_vatsim_data', '!CLIENTS:', 'PILOT', 'HVA'); ?>
  8. You can use simpilot's VATSIM Data Reader here. Once installed simply add the following to where you want it displayed: <?php MainController::Run('Vatsim', 'create_vatsim_data', '!CLIENTS:', 'PILOT', 'HVA'); ?> Note I have entered HVA as the ICAO as that is what your site says but use the ICAO that your pilots will use when flying on VATSIM
  9. Yeah I do the same as above. It's really simple - you pass the data through the URL with PHP. VATSIM clearly states NOT to use an iframe or embed it in any way so this is the best way to do so
  10. I've been playing around with this for a while: <?php $mystring = ACARSData::GetACARSData($aircraft->registration); if( strpos( $mystring, '$aircraft->registration' ) !== true ) { echo '<div style="border-radius:50px; height:10px; width:10px; background-color:green;">'; } else { echo '<div style="border-radius:50px; height:10px; width:10px; background-color:#cccccc;">'; } ?> I want it to display the green dot if it's flying and grey if not. Simples. But how?
  11. OK, let's be basic. Say I want a module that shows me a list of my fleet and a list of my hubs. If it were to be named 'test', I'd do: core/modules/test and add 'test.php' in there, am I right? OK, so, now I add this: class test extends CodonModule { public function index() { echo "test.tpl"; } } I take it this links to core/templates/test.tpl and ultimately skins/myskin/test.tpl? Now what about the data? Do I use the data from the classes in core/common?
  12. Brilliant, thanks
  13. Thanks for the reply
  14. I get a 403...
  15. Don't like the dropdown. Otherwise very nice
  16. I really want to make custom modules for myself (and maybe others eventually) but I can never do it. How do you pull the data? I can't write the PHP classes. I have read the documentation several times but I'm still stuck.
  17. You have 9000 schedules.
  18. Good honest VA from Yorkshire
  19. Is it just me or is it blatantly obvious that that is the plusnet logo?
  20. I think I've sorted my hosting.
  21. Problem solved.
  22. Genious Tom thank you so much Now for some serious changes...
  23. Yeah I know. I used to think they were good but I'm having second thoughts. Can I see one of your index.php files Tom? I don't have one :S http://freshjetvirtual.com/index.php
  24. Actually, can anyone post their index.php file? Located in public_html?
×
×
  • Create New...