The online racing simulator
Searching in All forums
(107 results)
gru
S2 licensed
1. what LFS version?
2. do U start LFS before DS?
3. do U have admin password in LFS?
gru
S2 licensed
Quote from Jack Slaitor :damn!
i can not make DS`s status bar say: connected. :banghead:

readme.txt:
Q: Status bar says 'not connected'
A: Set correct insim send port (tab Connection) (29999 default).
Enable insim in LFS: run LFS with command '/insim=29999' or type '/insim=29999' in chat box
gru
S2 licensed
Quote from misiek08 :For InSim is a divider(GOOGLE TRANSLATE)

gateway

i'm not sure if there is one for insim (and i'm to lazy to check )
but in another thread U wrote that 6 programs are made by U.
so why don't U pack it into one app (one insim connection)?
gru
S2 licensed
Quote from nesrulz : BUG with options menu (SPR)...

confirmed
but it looks like LFS bug to me, it just stops sending OG packets when entering options
i could send OG request every time buttons hide, but i dont think U want multiple "Outgauge: enabled" messages :/

my advice: use OG passive mode (set it with cfg.txt -> OutGauge Mode 2)
then it works fine

@BowserYo
i always use 1ms delay if requesting OG with insim, its not configurable
but just like 1303s_vortech said, U can setup OG with cfg.txt
OutGauge Mode 2
OutGauge Delay 10
OutGauge IP 127.0.0.1
OutGauge Port 30003
OutGauge ID 0

Last edited by gru, .
gru
S2 licensed
Quote from Xenix74 :I think scawen has a plan why he dissable the Digi.
I think he will dissable or change the insim or outsim data for Speed and RPM and such thinks in next patches because i mean he dont like it too.

im sure He knows how to delete this thread if He wants to

Quote :Dont want disnerved you guys but its clearly a advantage

yeah Mate, now i win every race, never been so fast before

i asked before to stop this "cheating" OT, can U? thx
gru
S2 licensed
Quote from Montabur :
The problem now is, that the LFS Window doesnt open maximized, but only normal window, so i have to maximize the windows myself. Could you add an option for that?

i was little busy last days, but finally found time to make it

version 1.0.2 (download in 1st post)
- configurable window state for startup programs
gru
S2 licensed
thx, i was missing:

p.StartInfo.UseShellExecute = true;

which is weird, because its set to true by default
gru
S2 licensed
(MCI.Info[i].Y / 196608) [COLOR="Red"]>=[/COLOR] 287) && ((MCI.Info[i].Y / 196608) [COLOR="Red"]<=[/COLOR] -243)

number cant be bigger than 287 and smaller than -243
correct comparison operators

Quote :The thing that would make me curious is in bold

[MCI.Info[i].Y / 65536 is convertion to meters, so i quess it converts position to 3 meters units (?!)

but i really dont know why. wouldnt it be better to use float values instead of integer?

float x = (float)MCI.Info[i].X / 65536;
float y = (float)MCI.Info[i].Y / 65536;

if ((x >= -24.1) && (x <= 51.2) && (y >= -729.3) && (y <= 861.4))
{
...
}

now U operate on real units and can compare with higher precission
Last edited by gru, .
gru
S2 licensed
Quote from sun :
Can anyone help ?

no code, no nothing, how are we supposed to help?

start Your program in debug mode, set breakpoint before file access and than check every executing line
[Vista] start LFS from another program
gru
S2 licensed
hi

im developing Digital Speedo mod http://www.lfsforum.net/showthread.php?t=44054
it has function to run programs on start, and there is problem with LFS on Vista, it always starts windowed, even if its set to fullscreen (cfg: Start Windowed 0)

it happens only if LFS is started through my program, works fine if started manually

one of racers reported this bug, and since im using XP, i cant check it myself
maybe some of U had similar problem, or can write small program to test it on Vista (i can send DS source code if its necessary)

here's pseudo code

Process p = new Process();

p.StartInfo.FileName = [I]lfs_path[/I];
p.StartInfo.WorkingDirectory = Path.GetDirectoryName([I]lfs_path[/I]);
p.StartInfo.Arguments = [I]lfs_arguments[/I];

p.Start();

what am i missing?
gru
S2 licensed
Quote :And what I have to switch or change to pass outgauge packets?

add port which app listens on (Outgauge Gateway, check ds_tab1.jpg in 1st post attachments)

lets say app XYZ listens directly from LFS on port 30003
1. set checked 'Auto-config Outgauge' in DS (it will read lfs cfg file and do the rest). after this operation DS will listen OG on port 30003
2. change OG port in XYZ to 30004
3. in DS add port 30004 in 'Outgauge Gateway' list

this will work if XYZ listens to OG in passive mode (OG port set in CFG.txt and OutGauge Mode set to 2)

if XYZ request OG via insim, there will be conflict (LFS sends packets to only one app), so U must make sure to start DS before XYZ (U can start XYZ via DS ('Startup' tab, screen ds_tab3.jpg)
in this case add to 'Outgauge Gateway' insim recive port of XYZ

what program is it?
Last edited by gru, .
gru
S2 licensed
Quote from smokenyall :...he wouldnd even help me...

U really shouldnt expect help

at this moment only responsible people play with cars modding, i mean they respect Devs and dont share their work
but probalby some day, some immature kid will start to release new cars :/
what my point is, i think Scawen shouldnt waste his time with files encryption/protection, he has more important tasks to do

so even if U find a way to modify cars, what would U do with it?
U cant use it online, only U would see modified cars, what fun is that?
gru
S2 licensed
Quote from Megin :Does it use outgauge for something? If not it will be great.

it does, but it has function to pass outgauge packets to other applications
gru
S2 licensed
Quote from Jakg :I can guess what he did but you won't find the answer (or any information on how to) posted here.

exactly, U have to find it yourself

oh, and dont bother asking Chudy for release, He wont answer
gru
S2 licensed
Quote from Montabur :
The problem now is, that the LFS Window doesnt open maximized, but only normal window, so i have to maximize the windows myself. Could you add an option for that?

i can give it a try, but dont promise anything
not sure yet if i can configure it via cfg file or winapi, i will test it when i get home
gru
S2 licensed
Quote from Heiko1 :
But how i change text size?

this.label1.Font = new System.Drawing.Font(...);
gru
S2 licensed
notice
fxr, xfr, xrr script files are overwritten with new patch
make sure to backup if Ur using custom ones
gru
S2 licensed
Quote from mikey_G :a MS FF also works on windows xp with the default drivers...

not quite true (if Ur talking about gameport version)

it depends on hardware, with some motherboards it works, with some (newer i guess) there are FFB problems
i had to buy USB version after PC upgrade, was ^@$! tired of reinitializing controls thousand times
Last edited by gru, .
gru
S2 licensed
Quote :basically either the brakes go from 0 to full or they are allready like i steped on the pedal

http://www.lfsforum.net/showthread.php?t=37680
gru
S2 licensed
MS FF gameport has proper driver for w98, no worries, it will work (problems are with w2k and xp)
im not sure about LFS upgrades
gru
S2 licensed
i suppose U could use LfsLapper or any other opensource insim program as a base, but... are U sure this is a good idea?

we're full of commercials anywhere, do U really want to put this into our favourite game?
even if it was displayed only between races, im sure i wouldnt like to visit such a server
gru
S2 licensed
thx for this, great tool
i never remember what keys combination i have '/rcm' and '/rcm_all' binded to, now i dont need it anymore
gru
S2 licensed
Quote from Mc21 :Y22

weird
are U using any other insim programs?

if not, can U try one? want to check if its DS problem, or Your LFS installation
gru
S2 licensed
with patch Y?
gru
S2 licensed
can we just end this OT please?
i asked moderators for permission, They accepted this program

since this is unofficial addon, its up to end user if he wants to use it or not

Quote from Gai-Luron :...i plain to record player to view if players of this club use it...
Why don't you put it in your release too Gru?

make love, not war
Last edited by gru, .
FGED GREDG RDFGDR GSFDG