Jump to content

Recommended Posts

Posted

Hi,

What a fantastic aircraft this is, rich in features, functions, and personality - it's a thing of beauty and a seminal product, thank you.

However, I need some assistance, please:

I have been so far been unable to switch off the landing gear lever (so that the hydraulic gear circuit is off). Having watched the training videos, I know to just hold the lever gently and nudge it downwards, but try as I might, the lever springs to the top (up) position, even if I drag it to the middle (off) position.

Could you please point me in the right direction, or perhaps retrofit a dedicated click spot on the gear trigger to switch off the landing gear?

I use Saitek panels but ONLY for the tactile feel of the gear and flap levers, and nothing else (otherwise it would be a waste of a VC as it is too fabulous to not use!).

Thanks,

Fabio

Posted
2 hours ago, Fab10 said:

I use Saitek panels but ONLY for the tactile feel of the gear and flap levers

And this is the reason why you cannot put the lever into the off position. If it is up on the saitek panel, then it sends always up!

Sebastian

Posted

Hi,

However, not wishing to contrast and compare the IXEG with anything else, I feel hesitantly compelled to mention that other aircraft allow the middle gear off position, though probably these do not simulate systems in the same way.

Can - or has - anything been done about it?

Thanks,

Fabio

Posted (edited)

If you are using FlyWithLua, you can script around it.

I my self have disabled the Gearlever in xsaitekpanels ini and use this little script to use the lever.

require("xsaitekpanels_switch")

local prev_gear_dn = SWITCH_GEARDN
local prev_gear_up = SWITCH_GEARUP

-- GEAR SWITCH
function gear_status()
	if SWITCH_GEARUP == 1 and prev_gear_up == 0 then
		command_once("sim/flight_controls/landing_gear_up")
	end 
	prev_gear_up = SWITCH_GEARUP
	
	if SWITCH_GEARDN == 1 and prev_gear_dn == 0 then
		command_once("sim/flight_controls/landing_gear_down")
	end 
	prev_gear_dn = SWITCH_GEARDN
end

do_every_frame("gear_status()")

Make sure you have implemented the xsaitekpanels modules into FlyWithLua and USE AT OWN RISK!

 

Sebastian

Edited by jimbim
Posted

Hi,

That works perfectly, thank you so much!

I have attached my B733_Xsaitekpanels.lua and xsaitekpanels.cfg files for others.

Please note that whilst my saitekpanels.ini works fine for me, it may not be OK for you, insofar as I like to use and interact with everything in this spectacular VC, with the exception of preferring to use my Saitek gear and flap levers.

As JimBim says, this is without support and entirely at your discretion to use.

Best wishes,

Fabio

Saitek Gear Off LUA and CFG.zip

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...