May 23, 20224 yr 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 June 18, 20223 yr by ScotFlieger With kind regardsRoland PohlVice chairman FSC e.V.
May 24, 20224 yr 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
May 24, 20224 yr Author 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 regardsRoland PohlVice chairman FSC e.V.
May 24, 20224 yr 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
May 24, 20224 yr Author 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 regardsRoland PohlVice chairman FSC e.V.
May 25, 20224 yr @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
June 13, 20223 yr 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 June 13, 20223 yr by madfred A day without laughter, is a day without living.
June 14, 20223 yr 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
June 14, 20223 yr 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.
June 14, 20223 yr 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
June 14, 20223 yr 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.
Archived
This topic is now archived and is closed to further replies.