PDA

View Full Version : Sioc Script for Landing Gear Lever



Anderson/SBSP
07-11-2011, 11:07 AM
Hi friends!!

Anybody have a sioc script for the lever of landing gear?

Tks,

Anderson

kiek
07-11-2011, 12:52 PM
Hi Anderson,
That depends on what aircraft you're talking... for the Level-D 767: Yes.
Regards,
Nico

Anderson/SBSP
07-11-2011, 02:06 PM
Hi Nico, is for 737NG PMDG on FS9. hehehehe

Tks,

Anderson/SBSP
07-14-2011, 08:32 AM
Hello, there goes the script for the landing gear, I believe that works with any aircraft that use the default FS offset.

I have created for use with the PMDG 737NG in FS9 and is working well.


// Alavanca de Trem de Pouso


Var 1000 Link FSUIPC_OUT Offset $0BE8 Length 2 // Landing Gear

Var 1100, name GD, Link IOCARD_SW Input 32 Type I, Device 1 // GEAR DOWN
{
IF V1100 = 1
{
V1000 = 16383
}
}



Var 1200, name GU, Link IOCARD_SW Input 34 Type I, Device 1 // GEAR UP
{
IF V1200 = 1
{
V1000 = 0
}
}