The online racing simulator
Searching in All forums
(419 results)
dUmAsS
S2 licensed
yay
dUmAsS
S2 licensed
phone your isp and ask if there having routing problems
dUmAsS
S2 licensed
doesnt matter now. a moment of madness.

it was the master server port on 29339 that i was after. my isp was blocking it outbound
dUmAsS
S2 licensed
i just updated to 5.13 and ran the benchmark replay.

on the old 5.7 drivers, the corner before the pit entry gets 70fps with mirrors on.

on the 5.13 i get 35fps with mirrors on. with mirrors off i get 70fps

AMD64 3000+ (single core)
1024mb Ram
X800 256mb VIVO


on the grid i get 20fps, i think before i had around 30-40
dUmAsS
S2 licensed
the packet id is ISI + char 0 (null)
what ports does lfs dedicated server use?
dUmAsS
S2 licensed
im having trouble with my new windows server and lfs, it cant contact the master server.

apart from the ports defined in the server's config file, what ports does lfs use?

from first look it listens on port 135-150 (or there abouts) for the master server
Last edited by dUmAsS, .
dUmAsS
S2 licensed
im on 05.7 (man im out of date) and dont really want to upgrade with these problems.

however i have...

PowerColor X800 Bravo 256mb
AMD64 3000+
~70 fps with only me on track (in cockpit view)
~30-50 fps when in the middle of a full pack ( in cockpit view)

i will update the drivers if you need that card tested
Last edited by dUmAsS, .
dUmAsS
S2 licensed
im sure i can find something interesting about it...
dUmAsS
S2 licensed
Quote from MAGGOT :Dumass - new cars ar dent/scratch magnets. Didn't you know? :P

actually no :P (i abandon it in the middle of 2 spaces at work so no one can park next to me )

it is a dirt magnet though

i have to admit though, im now getting bored of it. after 2 months i think its time for a new car!
dUmAsS
S2 licensed
Quote from speedfreak227 :on a recent ski trip some dick head parked super close and not even parallel to me. i noticed that his green door had blue paint at exactly the same height that my blue truck had some new green lines on it.

putting 2 and 2 together to make 5 (one extra for my rage) i decided to return the favor. i unlocked my door and bounced it off of his a few times, then pushed it into his door while hopping in and out of my seat to copy the up and down marks he left on mine.

felt a little better.

speedfreak227

remind me not to park near you
dUmAsS
S2 licensed
Quote from ayrton senna 87 :anyway, you are lucky more damage wasnt caused man!!

i took a look the morning after and the dent popped back out.

my car has healing powers!
dUmAsS
S2 licensed
seeing as no one likes me and wont buy me a present i showered myself in gifts!

new sound card, 2 games and a couple of dvds
Last edited by dUmAsS, .
dUmAsS
S2 licensed
in the host file it says

cars=111000000000000000

so mabey lfs understands that? try it that way (i have nfi if you can do that in a setup.cfg)
my car was attacked!
dUmAsS
S2 licensed
some numb-nuts forgot to put the handbrake on. there car then rolled down a slight slope and into the back of mine and dented the bumper

my car is only 1 month old!
dUmAsS
S2 licensed
Quote from SchneeFee :did we have a single case where LFS has been cracked? I cant remember one.

yes, s1 was cracked. but it also comes with a nice virus
dUmAsS
S2 licensed
Quote from digitalbear65 :lowered price to 50, plez!!!

wow, all that for only 50 bannanas?
dedicated server improvement?
dUmAsS
S2 licensed
in the dedicated server, could there be an extra switch in the cfg (or command line) so if theres an error, it doesnt show the message dialog? instead it writes the error to deb.log (like it does allready) and exits streight away.

it would make it easier to notice a problem when launching through a web app (problem with config or whatever, the message dialog keeps the process loaded, but it wont accept connections or anything. will be best if the error is logged and process closed. so i can slep the thread after launching lfs and seeing if it closes)
Last edited by dUmAsS, .
dUmAsS
S2 licensed
ive changed course completely and decided to put my recent c# learning to practice.

within 30 mins i came up with code that will start lfs and return the PID. i can then cleanly close lfs with the pid, or the filename. if that fails i kill the process.

im making a library of code and classes to do with lfs and i might release it when im done (if its any good).
dUmAsS
S2 licensed
wow, thanks. i think that will do. but i wonder how much of a problem it is for lfsworld or connected clients if the process is terminated instead of closed.

are you a c++ programmer? i can never seem to find what im looking for on msdn (im wondering if theres a skill needed to trick the msdn search)
dUmAsS
S2 licensed
ah it worked! thanks

i did see the CurrentDirectory property, but assumed it was read only.

im using pskill because im storing the PID and terminating lfs at another time. i should really try do a clean exit. but i cant seem to get a reference to the object using the PID, this will also cause trouble when i need to figure out if the process is still running...


i can send the keys "/exit{ENTER}" to the window, but im testing on xp, and if the window isnt active allready, trying to activate it makes the taskbar flash (the only time this isnt a usefull feature!) *goes to look for a reg key to disable that*
Last edited by dUmAsS, .
executing lfs with php in windows
dUmAsS
S2 licensed
im trying to get lfs started up using php and windows but ive hit a snag with how lfs finds its files. when my code starts lfs, lfs thinks that its in the php binary folder (in my case C:\Apps\PHPEd\PHP5) and not the same folder as the lfs.exe.

im using com to load up lfs, get the process id and then use a tool to terminate a process using its id. ive tryed creating a shortcut to lfs.exe but the method im using to start lfs reads the .lnk as a file and not a shortcut (then it complains its not a valid win32 exe)

using chdir() php function doesnt work to change the folder lfs starts in.

here is code

<?php

$Base = "C:\\Documents and Settings\\Jon\\My Documents\\temp\\packages\\";
$LFS = "lfs_s2_full\\default\\";

$WshShell = new COM("WScript.Shell");


echo $Base . $LFS . 'LFS.exe /cfg=setup.cfg';
echo "<br>";


$oExec = $WshShell->Exec($Base . $LFS . 'LFS.exe /cfg=setup.cfg');


$PID = $oExec->ProcessID;
echo "PID: $PID<br>";

sleep(1);

$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Exec($Base . "pskill.exe $PID");

echo "terminated $PID";
?>

here is output

Quote :C:\Documents and Settings\Jon\My Documents\temp\packages\lfs_s2_full\default\LFS.exe /cfg=setup.cfg
PID: 2716
terminated 2716

Quote :---------------------------
Error
---------------------------
Config file not found : setup.cfg
---------------------------
OK
---------------------------

is there a way to execute lfs and tell it what folder to start in, or is this a bug in lfs? (should lfs be settings its working directory to the exe path?)
dUmAsS
S2 licensed
yay for scawen!
dUmAsS
S2 licensed
Quote from thisnameistaken :I don't think it's in the same place on US English keyboards. I can't remember where it is because I haven't used one for ten years, but I'm pretty sure it's not there.

hmm, and all this time i thought the only difference was the " and # keys were swapped
dUmAsS
S2 licensed
Quote from sicbeing :(I'm american so I don't know where the pound key is lol )

um...k (so many thoughts going around in my head that i wont say here)



shift 3 mr sicbeing! (the one left of $)
dUmAsS
S2 licensed
happy bday mr scawen!
FGED GREDG RDFGDR GSFDG