

sniperfull
Members-
Content Count
17 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout sniperfull
-
Rank
Member
Profile Information
-
Gender
Male
-
Location
UK
-
I've just used Offset 3124 and P3D V3.4 returns 0 ? any way around that? because i need the specific version of p3d ....
-
Is it possible to switch on or off seatbelt signs using FSUIPC?
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
is there any posibility of doing this on 3rd party aircraft? Kuba -
Is it possible to switch on or off seatbelt signs using FSUIPC?
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
Where did you sir find that offset i looked in FS-Interrogate 2 but couldnt find anything. and how would i switch it on or off ? is it like 0 = off 1= on ? Thanks for the reply Kuba -
Is it possible to switch on or off seatbelt signs using FSUIPC?
sniperfull posted a topic in FSUIPC Client DLL for .NET
Is it possible to switch on or off seatbelt signs using FSUIPC? i had a idea with the seatbelts and the Turbulance offset . kuba -
Qualitywings 787 not recognized as aircraft...
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
Ahh! so apparently qualitywings decided not to enter anything there exept for "Category=airplane" ....... that explains my problem Thank you kuba EDIT i havent tested this yet as i am in flight ... if it does update inflight there must be another issue but if it does not update inflight then i will test it later -
Qualitywings 787 not recognized as aircraft...
sniperfull posted a topic in FSUIPC Client DLL for .NET
now that the Qualitywings 787 is out i am doing some flying in it and i noticed that my program is not recognizing the 787 as an aircraft... 'offset Dim aircraftType As Offset(Of String) = New FSUIPC.Offset(Of String)("AircraftType", &H3500, 24) ' and under a timer Try FSUIPCConnection.Process("AircraftType") lblAircraft.Text = aircraftType.Value Catch ex As Exception MessageBox.Show(ex.Message, AppTitle, MessageBoxButtons.OK, MessageBoxIcon.Error) End Try http://prntscr.com/gxet22 -
What about the HDG going over 360 Degrees?
-
i've just noticed a "bug" in my program as the heading value goes above 360 .... and its sometimes in accurate by a couple of degrees here's my code: Dim HDG As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&H580) ' aircraft heading Dim Heading As Double = (HDG.Value * 360 / 65536 * 65536) TxtHDG.Text = Heading.ToString("0" & "°")
-
actually sorry looked in the Offset status PDF and 3124 is for fs versions
-
Well in fs Interrogate 3124 is showing up as Electric Always available (FS2002 only)
-
whats the difference between (Of Short) and (of UShort) ? and would 11 be P3D V3 or is 10 for P3D v1/2/3? And It has fixed the issue thanks so much
-
Hi i am coding in VB.net and want to add current FS version that is connected and im struggeling to get it working what i have sofar : Dim SimVers As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&H308) ' Shows what sim its connected to and then on a timer i have : LblSimVers.Text = SimVers.Value and it displays : 655294464 when on P3D v4 when the documentation says it should return numbers 1 thrue 10 1=FS98, 2=FS2K, 3=CFS2, 4=CFS1, 5=reserved, 6=FS2002, 7=FS2004, 8=FSX, 9=ESP, 10=P3D
-
Question - How does FSUIPC actually autosave?
sniperfull replied to sniperfull's topic in FSUIPC Support Pete Dowson Modules
Does it use simconnect then as its 'asking' fsx/p3d to save the situation? -
Question - How does FSUIPC actually autosave?
sniperfull posted a topic in FSUIPC Support Pete Dowson Modules
i was just wondering on how fsuipc does the autosave... Does fsuipc make their own .fxml and .wx file and write the data from the sim into those files ... or does FSUIPC send code to the sim to make those files ? -
vb.net FSUIPC sending keypresses to sim
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
What about when the sim is minimized from what i've tested is that it doesnt seem to work? Sniperfull.