Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Great.
  2. No worries man. I'm glad I could help. Also, how's the tour system working out for you? I'm actually working on a tour system pretty much from scratch, so just wanted to get some opinions. I really would appreciate it if you liked my last post. Thanks
  3. Ok I got it working. First off forget the last post, so add a column into your phpvms_pilots in your DB as "bonus" the type must be "float" and set default az "0". Then open the following: Admin/modules/PIREPadmin/PIREPAdmin.php go down to line 298 and find the function called : approve_pirep_post(). Now go to the end of it and add the following: After this: # Call the event CodonEvent::Dispatch('pirep_accepted', 'PIREPAdmin', $pirep_details); Add this: # Give Bonus to good pilots $pilotbonus = "500"; $userinfo = PilotData::getPilotData($pirep_details->pilotid); if($pirep_details->landingrate < 50 OR $pirep_details->flighttime > 8) { $totalpay = $pilotbonus + $userinfo->totalpay ; $bonus = $pilotbonus +$userinfo->bonus; $fields = array ( 'totalpay' => $totalpay, 'bonus' => $bonus, ); PilotData::updateProfile($userinfo->pilotid, $fields); } then go to your profile_main.tpl and after this: <li><strong>Total Money: </strong><?php echo FinanceData::FormatMoney($userinfo->totalpay) ?></li> Add this: <li><strong>Total Bonus: </strong><?php echo FinanceData::FormatMoney($userinfo->bonus) ?></li> Then you should be home safe . Cheers
  4. Sounds like a plan. First add a column to your phpvms_pilots in your DB as "bonus" the type must be "float" and set default to "0" then add this to your profile_main.tpl. It's not tested, so give it a try and let me know: <?php $pilot = PilotData::getPilotData(Auth::$userinfo->pilotdid); $pirep = PIREPData::getLastReports($pilot,1); $pilotbonus = "500"; if($pirep->landingrate < 50) { $bonus = $pilotbonus + $pilot->totalpay ; $fields = array ( 'bonus' => $bonus, ); PilotData::updateProfile($pilot, $fields); } ?> <li><strong>Total Bonus: </strong><?php echo FinanceData::FormatMoney($userinfo->bonus) ?></li> Use the same code for the total hours like this: if($pirep->flighttime > 8) { $bonus = $pilotbonus +$pilot->totalpay; $fields = array( 'bonus' =>$bonus, ) PilotData::updateProfile($pilot, $fields); }
  5. It could be done automatically, so you need to specify on which condition the bonus should be paid to the pilot and simply update their profile using some codings .
  6. Problem 1: Some airports are not recognized by the add airport form in admin area, so I'm afraid you're gonna have to add them manually using google earth or some similar tools to get the lat and lon. Problem 2: There might be several reasons. The most common one is the days of the week that the schedule might not be set on all week days at the beginning, so check to make sure of that. The other one is an option in local.config.php in the core folder that hides the schedules which have been bid on and that bid is still on, so check to make sure of that as well. The other reason that I could think of is the schedule_results.tpl in templates subfolder in core folder that there might be some filtering out codes which of course someone had done it. Other than those, there shouldn't be any problems.
  7. What did you change in there and what were you trying to do?
  8. Not possible, so you're gonna have to use it as is or get into code writing and figure it out.
  9. You're welcome, please mark your post as SOLVED. Thanks
  10. The email has been sent, Please advise weather you have TS3 for us to talk live.
  11. It'll take some times as I have to remove some unneccessary files. is there some way that we could have a live chat, I have to mention some things to you while you have the files in your server.
  12. For the events I have another add-on I can offer you for free. It's the Tour system, that uses different airlines, meaning, for your event you're gonna have to add an airline with the name of your event and then send your pilots to book for that event. If you're interested I can send you the files by email.
  13. Are you using the default schedule search or an add-on for you schedules?
  14. This system is designed to show you schedules from your last location. Now if you want to implement that in your navigation bar, you're gonna have to do it like you did for RealScheduleLite and basically change the link to this system. I suggest you install this first to see how it's working out for you and then decide from there.
  15. Thanks for the compliment, Well the jump seat fee's I believe been resolved and as of right now everything works just fine in the module but if you can be more specific that would be very helpful. Regards
  16. As George mentioned, phpVMS is ready to accept the FSFK reports, all you need to do is downloading the configuration file from pilot center and put it in the corresponding folder of FSFK. Cheers
  17. This add-on is no longer supported by the writer, so you're gonna have to either use it as is or have knowledge of php to add to it. Cheers
  18. Parkho

    Any Addon Ideas?

    I'm not sure if you have seen the RealScheduleLite add-on by simpilot and that could be a challenging experience to fix the bugs that add-on has right now as it's not supported by simpilot anymore. Here is the link: RealScheduleLite
  19. Do you need a forum link in your front page? The link you gave is a log in page for a forum for Caal Airways. Using the default skin, add this code to your core/templates/core_navigation.php: <li><a href="http://www.forumname.com">Forum Name</a></li> Add this after this line: // Show these items only if they are logged in Remember that this will add a link button to your navigation bar meaning when a visitor clicks on it it will take them to a forum website.
  20. You could also use this if you want: Pirep List 1.0
  21. Parkho

    FSFK Log

    Roger that. Thanks.
  22. Parkho

    FSFK Log

    I don't have fsfk.php in the acars. Am I missing something?
  23. Parkho

    FSFK Log

    Thanks Cor. I appreciate it.
  24. Parkho

    FSFK Log

    Hi Cor, Thanks for answering. There is no problem with the client as it's working just fine but the thing's that I want to insert it's log data into the DB fields separately so that I can pull them out and show them in a table in pilot's public profile. I have done it with FSPAX since there is a file to edit but there is no such file for FSFK in ACARS module.
  25. Parkho

    FSFK Log

    Any body?
×
×
  • Create New...