Jump to content
The simFlight Network Forums

vgmarimon

Members
  • Posts

    22
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Palma de Mallorca (LEPA)

Recent Profile Visitors

967 profile views

vgmarimon's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I only have problems with FSLABS, aerosoft, wilco, airsimmer uses this offsets perfectly...
  2. Hi Pete, some pilots of my VA are using FSLABS Airbus 320 with P3d/fsx and they report that altimeter setting ajusted in plane is not the same with 0x0330 offset value. Maybe this plane use another offset for altimeter setting?
  3. Dim flapsincrement As Offset(Of Short) = New FSUIPC.Offset(Of Short)(&H3BFA) Dim flapsindex As Offset(Of Byte) = New FSUIPC.Offset(Of Byte)(&HBFC) ' FSX Dim flapsvalue As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&HBDC)
  4. Private Function Get_Flaps_Position() If SIM = "FSX" Or SIM = "P3D" Then Return (flapsindex.Value) Else Return (Int(flapsvalue.Value) / Int(flapsincrement.Value)) End If End Function
  5. Hi all, hi Pete, how is the best way to detect when plane is over a runway? Thx
  6. Hi, our software for tracking flights in Vueling VA made by me, i process data every 500ms... ALL VARIABLES(40 o 50) without loosing performance....
  7. I use this in a .bat file: "C:\Program Files\Microsoft\ILMerge\ilmerge.exe" infile.exe FSUIPCClient.dll MySql.Data.dll /out:fileout.exe /target:winexe /targetplatform:v4 /log:mergelog.log /ndebug This embed both FSUIPC and MYSQL DLL files into one .EXE file.
  8. Hi Pete, how realiable is offset 11B8 and 11BA for Gforce reads? Better read offset 1140 instead? Many Thx
  9. Hi, what is the offset for flaps position angle? Not position, angle... ex: 1,2,5,10.....
  10. Hi Pete this offset 0x0832 1 Crash detection: 1=Crash detection is on, 0 = off works only in fsx or all? Thx
  11. Paul, it's possible to write a zero to switch off Autopilot on offset 0x07BC? In other hand, is there an offset for Autobrakes possition?
  12. Hi, Pete.... What can i expect if write 0 to offset 0372? Faliures? Many thx
  13. Dim msgcontrol As Offset(Of Short) = New FSUIPC.Offset(Of Short)("msg", &H32FA) Dim msg As Offset(Of String) = New FSUIPC.Offset(Of String)("msg", &H3380, 128) msg.Value = "Hello this is captain speaking" msgcontrol.Value = 5 Try FSUIPCConnection.Process("msg") Catch e As FSUIPCException End Try
×
×
  • 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.