Jump to content

OA01

Members
  • Posts

    176
  • Joined

  • Last visited

Posts posted by OA01

  1. This works...

    # Google Map Options
    Config::Set('MAP_WIDTH', '875px');
    Config::Set('MAP_HEIGHT', '650px');
    # Valid types are G_NORMAL_MAP, G_SATELLITE_MAP, G_HYBRID_MAP, G_PHYSICAL_MAP
    Config::Set('MAP_TYPE', 'G_SATELLITE_MAP');
    Config::Set('MAP_LINE_COLOR', '#ff0000');
    Config::Set('MAP_CENTER_LAT', '52.308053');
    Config::Set('MAP_CENTER_LNG', '4.764167');
    Config::Set('MAP_ZOOM_LEVEL', 10);
    

  2. I have the same route & its priced at 119 Euro or £88 ! My guess is your default fuel price is set WAY to high! Look in your \\core\local.config.php, it should look something like this:

    Config::Set('FUEL_GET_LIVE_PRICE', true);
    Config::Set('FUEL_DEFAULT_PRICE', '0.19');
    Config::Set('FUEL_SURCHARGE', '0.0');
    

    The 0.19 is in Euro so thats 0.14 pence :)

  3. Edit your \\core\local.config.cfg to read like this:

    # ACARS options
    #  Minutes, flights to show on the ACARS
    #  Default is 720 minutes (12 hours)
    Config::Set('ACARS_LIVE_TIME', 5);
    Config::Set('ACARS_DEBUG', false);
    

    Then pilots will automatically disappear from the live flight board after just 5mins, not the default 12hrs

    • Like 1
  4. Trainee €18/hr

    Junior Officer €20

    Deck Officer €22

    Second Officer €24

    First Officer €27

    Flying Officer €30

    Engineer €35

    Flight Engineer €40

    Master Engineer €45

    Fleet Engineer €50

    Chief Pilot €55

    Senior Pilot €60

    Master Pilot €65

    Junior Captain €70

    Captain €80

    Fleet Captain €90

    Junior Commander €100

    Commander €110

    Fleet Commander €120

    Commodore €140

    Fleet Commodore €160

    Executive Commodore €200

    Special Executive €250

    Very Important Pilot €300

    Flying Legend €400

    • Like 1
  5. Check your \\core\local.config.php file has these lines, as the default fuel price is set to high!

    /*   Fuel info - Price correct as of 18-07-14. Sum=price(p/g) / 6.7 then convert to Euro
     Default fuel price, for airports that don't have live pricing
    And the surcharge percentage. View the docs for more details about these
    */
    Config::Set('FUEL_GET_LIVE_PRICE', true);
    Config::Set('FUEL_DEFAULT_PRICE', '0.31');
    Config::Set('FUEL_SURCHARGE', '0.0');
    

×
×
  • Create New...