Jump to content
The simFlight Network Forums

Joaogl

Members
  • Posts

    36
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Portugal

Joaogl's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. http://www.schiratti.com/dowson.html Thanks, Joao Lourenco.
  2. AIBridge link is not working for some reason... I'm trying to create a program to override the IVAO traffic positions, is it possible to do this without the AIBridge? only using FSUIPC? btw I'm using C#. Thank you for the time, Joao Lourenco.
  3. I'm trying to create a program to allow two planes to transfer fuel in mid air... Is there any way to check if the two planes are attached so it starts the fuel transfers using FSUIPC? Thanks, João Lourenço
  4. Bank Angle it is now working I used the offset 2F78
  5. Hello, I'm trying to find the corrent offsets to read fuel information as well as weight for FS2004 and FSX but none seems to work... What is the best offset to read: - Empty Weight (I tried H1330 but It doesnt seems to work..) - Payload (Havent found one yet) - Fuel (I tried H0AF4 it's giving me a bit diferent value then the right one) - Gross Weight (I tried H1334 its not working also) - Max. allowable fuel (Havent found one..) - Bank Angle (I tried H057C but when I trie to apply this *360/(65536*65536) Math it runs but it doesnt show a thing...) Please Help me, Thank you.
  6. Hello, When I run the test program that is in the FSUIPC SDK folder for Java it gives me this error: Running tests Exception in thread "main" java.lang.UnsatisfiedLinkError: G:\Programacao\Java Acars\test\fsuipc_java.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary1(Unknown Source) at java.lang.ClassLoader.loadLibrary0(Unknown Source) at java.lang.ClassLoader.loadLibrary(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at com.flightsim.fsuipc.fsuipc_wrapper.<clinit>(Unknown Source) at Test.main(Test.java:99) [/CODE] How can I resolve this? Thanks
  7. Hello, In Fuel weight(0AF4) it says Fuel Wieght as pounds per gallon * 256. If i want to change it to Kilo I have to do ((0AF4 result) * 256) * 3.7854118 its that right?
  8. Hello, Tuch Down Rate done thanks for every thing.. Now I have other question using the FSUIPC 4 Offsets Status how can i now that is the type of the return value? I mean the return value from the onGround is 0 = no or 1 = Yes.. What is the Offset to the Flaps ive searched but i really dont know wicht one to use....
  9. Thanks again I found two Offsets 0842 : Vertical speed in metres per minute, but with –ve for UP, +ve for DOWN. Multiply by 3.28084 and reverse the sign for the normal fpm measure. and 02C8 : Vertical speed, signed, as 256 * metres/sec. For the more usual ft/min you need to apply the conversion *60*3.28084/256 Now to get the Tuch Down Rate I have to get the 02C8 when tuch on the ground it that correct? Both(02C8 and 0842) need some calculations but im not understanding how so lets see if this is correct : Dim tuchdonwrate As Offset(Of Integer) = New Offset(Of Integer)(&H0842) then Me.tuch.Text = (tuchdownrate.Value * 3.28084) And for the next one Dim tuchdonwrate As Offset(Of Integer) = New Offset(Of Integer)(&H02C8) then Me.tuch.Text = (tuchdownrate.Value * 60 * 3.28081 / 256) thats right?
  10. Im searching the Offset to Tuch Down Rate do you know? im searching in the FSUIPC4 Offsets Status but getting hard to find it....
  11. Hello, Thanks for the help. Now, I lerned VB by my hown so names and things like that I dont know... And I have only 15 years so that why my bad English and Im not English im portuguese.... Now thanks again
  12. I have some questions: First one, in the Fs-Interrogate2std in this case Pause Flag it says: Addr: 0264 Field-Name: Pause Flag Var.Type: S16 Size: 2 Read/Write: Read(only ) Category: Simulation Expression: # Usage: 0=Running, 1=Paused then in the code we have to write this: Dim pause As Offset(Of Short) = New FSUIPC.Offser(Of Short)(&H264) so what is actually the &H264? I mean the 264 its the Addr and the &H where did it came from? Second, lets see if this is correct and what i would like somebody to explain me Addr its like the "name" of the information we want to know and we and to put it in the code. Field-Name Its The name. Var. Type i Would like to know what is it Size its the max number off characters that cames on the FSUIPC response. Read/Write its if that information can be only Read or Write or Both. Category its the Category.... Expression I would like to know what is it.. Usage its the type off response that the FSUIPC give us. And to end in this code: Dim AircraftName As Offset(Of String) = New FSUIPC.Offset(Of String)("AircraftInfo", &H3160, 24) in this what is actually the 24 and the "AircraftInfo" means something or if I want a can change it for ex. to "Plane" it will still works? Thanks
  13. Eclipse is the most common program to create games and plugins and scripts etc.. in java.. Ok i will see in the SDK
×
×
  • 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.