Jump to content

raptor84

Members
  • Posts

    78
  • Joined

  • Last visited

Posts posted by raptor84

  1. Can someone help with this function because it is not working for me. The function is taken "actions.Lua"  and assigned a key to it with Parameter 25 in FSUIPC. Basically what I'm trying to do is have for example, Ctrl+F3 turn on/off Landing lights, runway turnoff and taxi takeoff light.

     

    function AB_OVH_Ext_LDG_ALL_on()
        AB_OVH_Ext_LANDING_on()
        _sleep(150)
        AB_OVH_Ext_TAXI_takeoff()
        _sleep(150)
        AB_OVH_Ext_RUNWAY_off()
        DspShow('LDG', 'on')
    end

    function AB_OVH_Ext_LDG_ALL_off()
        AB_OVH_Ext_RUNWAY_on()
        _sleep(150)
        AB_OVH_Ext_TAXI_on()
        _sleep(150)
        AB_OVH_Ext_LANDING_off()
        _sleep(150)
        AB_OVH_Ext_LANDING_retract()
        DspShow('LDG', 'off')
    end

    function AB_OVH_Ext_LDG_ALL_toggle()
        if A330 then
            val = 1
        else
            val = 0
        end
        if _tl("AB_VC_OVH_ExtLight_Landing_Sw", val) then
            AB_OVH_Ext_LDG_ALL_off()
        else
            AB_OVH_Ext_LDG_ALL_on()
        end
    end

  2. Hello,

     

    I have a question about the flight level change. I was planning a flight from LFPG to LPPT and I found that I needed to descend from FL350 to FL230 at waypoint DEVAR. I think the TOD should be at/around waypoint VIS (when comparing it to real world flights). Naturally, when I was doing the flight, I didn't start my descend until I was near ABETO. So why is PFPX telling me to start my descend way too early?? I've attached a copy of my flight plan as well for your reference.

     

    image.thumb.png.27118088e4cc8cb8d826903d6cad1a05.png

     

    image.png.08a3572c0ef04b2c713406c58358f8d8.png

    UAL6887.pdf

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy & Terms of Use