Jump to content
Sign in to follow this  
FSC190

PMDG737 MSFS Beta - Issue Reports

Recommended Posts

Hi Andrew,

I missed a "Both LDG Lights on" and "Both LDG Lights Of"f function

Can you add this in the next Update
 


function PMDG_OVHD_EXTLTS_LAND_BOTH_On ()
        PMDG_OVHD_EXTLTS_LAND_L_on()
        PMDG_OVHD_EXTLTS_LAND_R_on()
end

function PMDG_OVHD_EXTLTS_LAND_BOTH_Off ()
        PMDG_OVHD_EXTLTS_LAND_L_off()
        PMDG_OVHD_EXTLTS_LAND_R_off()
end

 

And please have a look at the LDG-Light Installation Options.

There is also a 3 Way switch (On, Pulse, Off) possible.

The LDG-Light function in V0.5 don't work with this option.

 

Edited by ScotFlieger

With kind regards

Roland Pohl
Vice chairman FSC e.V.

Share this post


Link to post
Share on other sites

Hi Roland

I have added the Landing Lights Both On/Off for the next release.

You are going to have to help me. I can not find these light options (pulse) in the FMC equipment options for the PMDG 737-700. What are they are and why don't the current options don't work?


Andrew Gransden

Scotland, UK

LINDA Support/Developer - VATSIM and BAVirtual - Airbus Flyer

i7 1TB SSD GTX980 - FSX/P3D - Aerosoft Airbus A318/A319/A320/A321 - FS2Crew

Share this post


Link to post
Share on other sites

Hi Andrew,

it is PMDG Setup / Aircraft equipment page  13/15 LSK L1

"Ext Light Package"

ORIGINAL    --> ORIGINAL  W/PULSE --> LED LTRTL    --> LED LTRTL W/PULSE

2 way switch --> 3 way switch                -->2  way switch  --> 3 way switch

With a 3 way switch  Ldg_Lights On moves the witch into the middle position (pulse),

 


With kind regards

Roland Pohl
Vice chairman FSC e.V.

Share this post


Link to post
Share on other sites
15 minutes ago, FSC190 said:

Hi Andrew,

it is PMDG Setup / Aircraft equipment page  13/15 LSK L1

"Ext Light Package"

ORIGINAL    --> ORIGINAL  W/PULSE --> LED LTRTL    --> LED LTRTL W/PULSE

2 way switch --> 3 way switch                -->2  way switch  --> 3 way switch

With a 3 way switch  Ldg_Lights On moves the witch into the middle position (pulse),

 

Found it thanks.


Andrew Gransden

Scotland, UK

LINDA Support/Developer - VATSIM and BAVirtual - Airbus Flyer

i7 1TB SSD GTX980 - FSX/P3D - Aerosoft Airbus A318/A319/A320/A321 - FS2Crew

Share this post


Link to post
Share on other sites

The original LDG-switches are a bit difficult, cause there are 4 switches. 2 fixed LDG-Lights with a 2 way switch and 2 retractable switch with a 3 way switch Positions Retract -> Off -> On

And a long bar to switch them all together.

The easiest LDG-Lights are the LED-Lights

 

 


With kind regards

Roland Pohl
Vice chairman FSC e.V.

Share this post


Link to post
Share on other sites

@FSC190 thank you for the clarification. v0.6 released with fixed and retractable landing light functions


Andrew Gransden

Scotland, UK

LINDA Support/Developer - VATSIM and BAVirtual - Airbus Flyer

i7 1TB SSD GTX980 - FSX/P3D - Aerosoft Airbus A318/A319/A320/A321 - FS2Crew

Share this post


Link to post
Share on other sites

Gear lever commands are not working properly.

The gear UP command set's the lever to OFF. (as if it just goes one step up.)

Gear OFF and Gear Down go to the correct position.

I use the latest PMGD 737 module (downloaded a week ago.)

UPDATE: and YES, I did check to make sure I don't have anything else linked to the gear lever positions in Linda as well as FS2020.

Edited by madfred

A day without laughter, is a day without living.

Share this post


Link to post
Share on other sites
14 hours ago, madfred said:

Gear lever commands are not working properly.

The gear UP command set's the lever to OFF. (as if it just goes one step up.)

Gear OFF and Gear Down go to the correct position.

I tested with the previous version and all was OK. After spending some time downloading PMDG 737 v3.0.20, I was able to confirm the issue with Gear Up function. It is an issue with the timing of 2 consecutive up commands (and the non-nonsensical 1960's 3 position design). It will be fixed in v0.7 beta. In the meantime, try adding this update in your PMDG737 user.lua file:


function PMDG_MPNL_GEAR_up ()
local pos = ipc.readLvar('switch_455_73X')
    if pos > 30 then
        PMDG_MPNL_GEAR_inc ()
        ipc.sleep(4000)
    end
    if pos == 0 then
        PMDG_MPNL_GEAR_inc ()
        ipc.sleep(300)
    end
    ipc.writeLvar('switch_455_73X', 0)
    if pos > 0 then
        PMDG_MPNL_GEAR_inc ()
        ipc.sleep(300)
    end
    if _MCP1()  then
        DspShow ("GEAR", ">>UP")
    end
    ipc.sleep(300)
    PMDG_MPNL_GEAR_show ()
end


Andrew Gransden

Scotland, UK

LINDA Support/Developer - VATSIM and BAVirtual - Airbus Flyer

i7 1TB SSD GTX980 - FSX/P3D - Aerosoft Airbus A318/A319/A320/A321 - FS2Crew

Share this post


Link to post
Share on other sites

Thanks Andrew,

I'll add the lines to the Lua script till module v0.7 is released.


A day without laughter, is a day without living.

Share this post


Link to post
Share on other sites
17 minutes ago, madfred said:

I'll add the lines to the Lua script till module v0.7 is released.

Best added to user.lua. This will override the existing function without affecting the original actions.lua.


Andrew Gransden

Scotland, UK

LINDA Support/Developer - VATSIM and BAVirtual - Airbus Flyer

i7 1TB SSD GTX980 - FSX/P3D - Aerosoft Airbus A318/A319/A320/A321 - FS2Crew

Share this post


Link to post
Share on other sites
2 minutes ago, ScotFlieger said:

Best added to user.lua. This will override the existing function without affecting the original actions.lua.

Yes, will do.

Thx again


A day without laughter, is a day without living.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Tom Allensworth,
    Founder of AVSIM Online


  • Flight Simulation's Premier Resource!

    AVSIM is a free service to the flight simulation community. AVSIM is staffed completely by volunteers and all funds donated to AVSIM go directly back to supporting the community. Your donation here helps to pay our bandwidth costs, emergency funding, and other general costs that crop up from time to time. Thank you for your support!

    Click here for more information and to see all donations year to date.
×
×
  • Create New...