The online racing simulator
Searching in All forums
(89 results)
Erazotropa
S2 licensed
Hi all,

Thanks for the nice comments
Realy appreciated



I am also looking for people who want to participate with this project..

There are lot of things that have to be done, like Fullscreen function and Autoresizing etc...
But still due the lack of knowledge i am not able to get this working on my own.


If you like to participate, please contact me!
Erazotropa
S2 licensed
Quote from yankee-eight :Componet 'SYSINFO.OCX' or one of its dependencies not correctly registered:
a file is missing or invaild


I get that error upon starting it. It worked fine on the last start-up. But I have already uninstalled it three times and it says ^that^ everytime. Any help?

Fixed

Please re-download..
Erazotropa
S2 licensed
Hi all!

New update!

Fixed where:

* Complete reorganized view!
* Better view of shift and signal lights!
* Needle over trip counter fixed

Last edited by Erazotropa, .
Erazotropa
S2 licensed
Quote from silverfox1973 :Can I run this on second computer, through LAN?

Yes you can!

Just type in CFG.TXT the destination IP for OutGauge..
And set port..
Dont forget to open up the UDP port in Windows Firewall!
Erazotropa
S2 licensed
Great thanks!!!

Now i can realy test my new Outgauge Application

http://www.lfsforum.net/showthread.php?t=52787
Erazotropa
S2 licensed
Quote from anbiddulph :idea: make the needle go over the trip counter?

Yes, i am fixing this at the moment
Erazotropa
S2 licensed
Quote from Stuff :Optimization note.. If an if expression is true, don't assign a variable true.. just assign it the expression. Like so:


LEDShiftLigth.Visible = (Packet.Flags And OG_SHIFTLIGHT) > 0


Ok thanks for the tip!
How to control the car's signal lights?
Erazotropa
S2 licensed
Hi,

Does someone know how to use the Right and Left signal lights?
I cant seem to find any button mapping option for this..

Anyone?

Bjorn
Virtual LFS Dashboard
Erazotropa
S2 licensed



The Virtual Dashboard for Life for Speed!

Works with OutGauge, can be setup to a secondary monitor.
Or use it over Lan on a second PC!

Works best in 800x600 screen resolution.

Enjoy!!!


== Version 0.2.1 ==









==> Watch on Youtube <==



Update in v0.2.1
* Possible to select Ledbar style (led,Triangle,Blocks) and direction, and single ledbar!

Update in v0.2.0
* It is now possible to create you're own favorite color scheme!!!!
Most color of the objects such as Text/Gauges/Led Bars and background can be manualy be adjusted, at your Taste!!!

Update in v0.1.9
* Gauges have a more profi look now, also adjusted some max speeds..(please let me know if a Max limit is to low)
* Button that will maximize and remove borders (only in 800x600 resolution) so it will fill the screen..
* RPM ledbar added at top of the screen, that will act from Half of Max rpm.. (maybe this could be better, please let me know)
* More Help text added..
* Ticks fixed in Turbo Gauge.

Latest version:

VLFSDash is written with Microsoft Visual Basic 6 Enterprise.

>>> VLFSDash version 0.2.2 SOURCE <<<

VLFSDash version 0.2.1 UPDATED!!!

Older versions:
VLFSDash version 0.2.0
VLFSDash version 0.1.9
VLFSDash version 0.1.8
VLFSDash version 0.1.7
VLFSDash version 0.1.6
VLFSDash version 0.1.5




Please let me know if you like it


Have fun!
Bjorn - [iRT] Eraz


=== USER PICTURES ===

Would you like to see your pic here!?
PLEASE UPLOAD HERE





Last edited by Erazotropa, . Reason : Update
Erazotropa
S2 licensed
Hi all!

Thanks for all your replies and help!

I have figured out howto..


If (Packet.Flags And OG_SHIFTLIGHT) > 0 Then
LEDShiftLigth.Visible = True
Else
LEDShiftLigth.Visible = False
End If

If (Packet.Flags And OG_FULLBEAM) > 0 Then
Headlights.Visible = True
Else
Headlights.Visible = False
End If

If (Packet.Flags And OG_SIGNAL_L) > 0 Then
LeftSignalLight.Visible = True
Else
LeftSignalLight.Visible = False
End If

If (Packet.Flags And OG_SIGNAL_R) > 0 Then
RightSignalLight.Visible = True
Else
RightSignalLight.Visible = False
End If

Works fantastic!
How to substract variable Flags? OutGauge
Erazotropa
S2 licensed
Hi all!

I am recently active with VB6 and making a application that is receiving the OutGauge UDP packets.

With VB6 i have created a Virtual dashboard that will visible on a secondary monitor.



All is going very well exept 1 thing....


'Each update sends the following UDP packet :
Private Type OutGaugePacket
Time(0 To 3) As Byte 'time in milliseconds (to check order)
Car(0 To 3) As Byte 'Car name
Flags(0 To 1) As Byte 'Combination of OG_FLAGS, see below
Gear As Byte 'Reverse:0, Neutral:1, First:2...
SpareB As Byte 'Spare
Speed As Single 'M/S
Rpm As Single 'RPM
Turbo As Single 'BAR
EngTemp As Single 'C
Fuel As Single '0 to 1
OilPress As Single 'BAR
Spare1 As Single 'Spare
Spare2 As Single 'Spare
Spare3 As Single 'Spare
Throttle As Single '0 to 1
Brake As Single '0 to 1
Clutch As Single '0 to 1
Display1(0 To 15) As Byte 'Usually Fuel
Display2(0 To 15) As Byte 'Usually Settings
ID As Long '(optional ID - if specified in cfg.txt)
End Type

Private Const OG_SHIFTLIGHT As Long = 1
Private Const OG_FULLBEAM As Long = 2
Private Const OG_HANDBRAKE As Long = 4
Private Const OG_PITSPEED As Long = 8
Private Const OG_TC As Long = 16
Private Const OG_HEADLIGHTS As Long = 32
Private Const OG_SIGNAL_L As Long = 64
Private Const OG_SIGNAL_R As Long = 128
Private Const OG_REDLINE As Long = 256
Private Const OG_OILWARN As Long = 512
Private Const OG_1 As Long = 1024
Private Const OG_2 As Long = 2048
Private Const OG_3 As Long = 4096
Private Const OG_4 As Long = 8192
Private Const OG_KM As Long = 16384
Private Const OG_BAR As Long = 32768



How do I get the OG flags out of the FLAGS variable?

I want to copy the result into a new variable that would be 1 or 0

Anyone got an idea?

Kind Regards
Bjorn Pasteuning
Erazotropa
S2 licensed
Amen! Zen

Thanks that solved it right away!

Stupid me hehe i should have known this...

Many thanks

Bjorn
Problem speeding up after leaving the pit (qualify)
Erazotropa
S2 licensed
Hi all,

Hope this is the right section for this....

Now playing LFS for 2 days and reading the manual i cant figure out the following issue i have..

When starting a race with Qualification i leave the pits and dont cross the 80kph..
When entering the track it is impossible to speed up.. there seems to be a speed limiter of some sort...

I cant figure out what i am doing wrong..
I have tried to find some people here that have/had the same problem but find none realy...

Any one out there knows about it and have a solution?!

Many thanks in advance..

Bjorn aKa Erazotropa
Hi all!
Erazotropa
S2 licensed
Hi all! my name is Bjorn from the netherlands, 29yrs of age..

Played the demo for 1 day and i was hooked! and obtained a unlock for S2 right away..

Hope to race you some day!!!




Bjorn AKA Erazotropa
FGED GREDG RDFGDR GSFDG