Jump to content
The simFlight Network Forums

Framac

Members
  • Posts

    32
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Framac

  1. Hi, With c# I can't read LVars. So the only way to access the airbus-x ap is with LUA, ok, one more language to learn. :D
  2. Thanks for your reply. The program is written in C# and I think I can not read and write offsets from FSUIPC using LUA, or I'm wrong? It's possible to use the offset 66C0 (free for general use) to read AND WRITE the airbus offset using LUA? Framac
  3. Hello, I've searched the forum but found no answer to my doubts. I usually I use the offset 07BC to know if the autopilot is on or off, but with airbus x, this offset does not work. Is there any way to read and change the state of the airbus-x autopilot with fsuipc? Peter intends to make some dll that allows to interact with this airbus as it did with PMDG? I really like this plane but I have a program that interacts with fsx using FSUIPC and I can not use with this airbus because aerosoft use custom code to this offsets. :( Thanks for your answers. Framac
  4. Hi, To calculate the current flaps position, I'm using this: private Offset<int> offset_flaps = new Offset<int>(0x0bdc); private Offset<short> offset_flapsint = new Offset<short>(0x3bfa); private Offset<short> offset_flapsnr = new Offset<short>(0x3bf8); flaps_pos = (offset_flaps.Value / offset_flapsint.Value); This works fine, except with Wilco Airbus, where I got positions: "0,2,3,4,5". I only have 4 positions, and the values skip from 0 to 2. The flaps position in Wilco are, 0, 1+F, 2,3,4 I got offset_flapsnr =5, but I only have 4 positions. With other planes everything is ok, how can I get the correct values from wilco? Thanks for your help.
  5. Hi, Is there any way to disable the settings in FS? For instance disable and put the realism settings in Hard and disable the tab, or disable all items. I saw the 0c44 but user can change the settings after start the flight, can I disable all the tab? Thanks
  6. Oh, thanks Pete . I used fsinterrogate and I saw these offsets, but now I'm using the FSUIPC manual and I have mutch more offsets available. :rolleyes:
  7. Hi, I'm having one problem with this... I want to use the crash detection offset 0x0830 private Offset<int> offset_detect_crash = new Offset<int>(0x0830) ... int xxx = (int)offset_detect_crash.Value; but allways return xxx=16842752 Has I can see in manual, should return 0= Ignore crash or 1= detect crash and restart. What I'm doing wrong?? :blink: Thanks,
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.