Results 1 to 4 of 4
  1. #1
    300+ Forum Addict Anderson/SBSP's Avatar
    Join Date
    Aug 2008
    Location
    São Paulo, Brazil, Brazil
    Posts
    306
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Sioc Script for Landing Gear Lever

    Hi friends!!

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

    Tks,

    Anderson
    Anderson Roberto de Souza - Brazil / São Paulo
    Blog: www.737ngsim.com.br Twitter: @ARSouza

  2. #2
    500+ This must be a daytime job kiek's Avatar
    Join Date
    Jan 2007
    Location
    Netherlands
    Posts
    698
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Sioc Script for Landing Gear Lever

    Hi Anderson,
    That depends on what aircraft you're talking... for the Level-D 767: Yes.
    Regards,
    Nico

  3. #3
    300+ Forum Addict Anderson/SBSP's Avatar
    Join Date
    Aug 2008
    Location
    São Paulo, Brazil, Brazil
    Posts
    306
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Sioc Script for Landing Gear Lever

    Hi Nico, is for 737NG PMDG on FS9. hehehehe

    Tks,
    Anderson Roberto de Souza - Brazil / São Paulo
    Blog: www.737ngsim.com.br Twitter: @ARSouza

  4. #4
    300+ Forum Addict Anderson/SBSP's Avatar
    Join Date
    Aug 2008
    Location
    São Paulo, Brazil, Brazil
    Posts
    306
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Sioc Script for Landing Gear Lever

    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.

    Code:
    // 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
       }	
    }
    Anderson Roberto de Souza - Brazil / São Paulo
    Blog: www.737ngsim.com.br Twitter: @ARSouza