The online racing simulator
Searching in All forums
(377 results)
fujiwara
S3 licensed
I drive a car, and switching to cockpit view under LFS i wonder why i can't see the bonnet/hood.

I have to put over 100º of FOV to see both mirrors, i hardly see what's on center mirror, and there's a huge area of the monitor covered with black - the roof of the car -.
fujiwara
S3 licensed
Quote from wien :But your experience with real cars is not going to transfer to LFS that easily. You need to train your eyes to detect G-forces instead of using your arse for starters. This is similar to what you're doing in chase view, but instead of looking at the car itself, you need to detect "camera" rotations when in the cockpit. You're just not going to adapt to this after a few laps around Aston. If you really want to learn you need to give it at least a day of serious practice.

But you will learn, and you will be just as fast as you are now if you give it a serious go.

There's goes the option thingy.
Instead let's teach how to drive in cockpit view, in a few months this is all forgotten and the chase view is no longer available.
fujiwara
S3 licensed
Quote from Gunn :I don't care about the majority nor the minority. I only care about the races I'm in. I don't care about what is popular and what is not. I don't care if people are having fun or not, it isn't my business to worry about their personal state. If you are using chase view for example, I'm not interested in racing with you anyway. You're playing a totally different game.

Well, I see that discussing this with you is a waste of time, so I'll spend no more energy doing do.

It's hard to discuss with someone that doesn't care a lot.
fujiwara
S3 licensed
Quote from Hankstar :A good option too - for leagues and comps (such as LX Month) especially, as it will level the playing field.

A quick gaze into my crystal ball tells me we won't see forced cockpit view much on pickup servers, judging by the amount of :bananadea that it's generated already.

Probably because an OPTION may become a STANDARD .
fujiwara
S3 licensed
It was really necessary to show this?
fujiwara
S3 licensed
Ducati: very fast bike
Yamaha : very good maneuverability

It's like a trade off, and since both racers are awsome and don't really make mistakes, it's the track that will select the winner (that's waht i think).
A faster track will allways suit Stoner, while a twisty and slow track will favour Rossi.
fujiwara
S3 licensed
Quote from ZzeCoOl :..........
ps: a drifter knows how to control and stop the right time the car from sliding ,"we" can teach racers how to do it ,cause if they dont know like Ian here

News Flash...drifter can teach real racers how to what, really?
Every real life racer know how to drift, real racers tend to avoid drifting, unless they are in a show off competition.
fujiwara
S3 licensed
:arge:cmon people..this is not a circus.
ramps...wth, what ramps !!!
fujiwara
S3 licensed
Can't wait to see this...
Loved the LFS INTRO FZ50

OMG...+300MB and no direct link...gonna last all day downloading
fujiwara
S3 licensed
Quote from -wes- :
They come flying in from 3 car lengths away and have to almost stop to make the apex, it can supprise the person your passing
and they will also be at the limit of control. Braking hard may not avoid the collison, what else can you do?

Long live the divers...
fujiwara
S3 licensed
I believe chicanes were made to slow down, although a lot of chincanes in LFS are done almost at full speed .

It's never a good idea to pass on a chicane...if something goes wrong, it's very stupid to start blaming...chicanes are not meant to have cars side by side.
fujiwara
S3 licensed
Quote from kamkorPL :It's amazing there is such small interest. I guess KB users love their KBs, and mouse users love their mouses.

Why you throw a comment like that .
I'd love to have his DFP, but my skills with design, movie editing and related stuff is above 0.

And i bet that a lot of racers with wheels without FFB don't want a DFP too.
Last edited by fujiwara, . Reason : Forgot the wheel drivers.
fujiwara
S3 licensed
You could post what you do best.
How to pick the RACE_S setup or other setup and tweak it for for a specific track.
The most important things would be the dampers, springs, ARB's, etc.
fujiwara
S3 licensed
WOW
Do you really wanna give a S2 license?
fujiwara
S3 licensed
Hi.
Can i join too?
fujiwara
S3 licensed
Quote from Barroso :call me a freak but running around fe black in an lx6 alone for half an hour isnt fun, i know there might be more popular combos wich allow for closer racing, but its not like i only join full servers, im not a uf1 man, i hate the thing despite the close racing it provides and i believe sidi got it spot on, maybe the summer vacation helps and ill wait to see if santa brings a new track or something.
one more thing, if some of the redline/conedodgers admins happens to read this atleast consider changing some tracks.

Ever tryed OLT Pro Racing server?
I think it suits your style...
fujiwara
S3 licensed
Quote from BruTaLysT :omg, at least say why and on which points u disagree. Now we can't have a decent conversation.

This type of conversation is not new.
fujiwara
S3 licensed
Quote from tiagolapa :Ask KingNothing some keyboard advice. He is keyboard freak

Fujiwara can help you to, but only in uf1

you son of $#%#$"#$...

don't ask KingNothing...he's gifted.
keyboard will drive you crazy, play while you can, but gather some money to get a wheel.
fujiwara
S3 licensed
Mostly it's from the Spanish League.
fujiwara
S3 licensed
Quote from andy29 :Fujiwara, Ian... thanks for the information. I am learning with every post

I don't think I really explained it right though. At the moment die is ending the script. What I want to do now is to change it so that it doesn't stop... I want it to keep looping and echoing any messages it gets, if that's possible. I have tried removing die and putting echo in its place, but it seems that it's not as simple as that.

Problem is, since you are running this script endlessly, you'll never see the output, unless you force it.
echo($out) works fine, problem is, you will only see the output after the script ends, wich never happens because you have a endless loop, to see the output, you have to force it.

Look at this 2 examples and you will understand:
No output forced...you see the result after the script ends.

<?php

//if (ob_get_level() == 0) ob_start();

while ($i < 10 )
{
echo "<br> Line number $i.";
sleep(1);
//ob_flush();
//flush();

$i++;
}

echo "Done.";

//ob_end_flush();

?>

With forced the output...

<?php

if (ob_get_level() == 0) ob_start();

while ($i < 10 )
{
echo "<br> Line number $i.";
sleep(1);
ob_flush();
flush();

$i++;
}

echo "<br>Done.";

ob_end_flush();

?>

Hope this helps.
Last edited by fujiwara, . Reason : Arg...Ian was faster :-)
fujiwara
S3 licensed
die("....") ends your script even if you are inside a while(true) loop.
to force the output, put your script inside this:


<?php

if (ob_get_level() == 0) ob_start();

while(true){
.............................
ob_flush();
flush();
.............................
}
ob_end_flush();

?>

Last edited by fujiwara, .
fujiwara
S3 licensed
Yes, on the STCC servers at that combo.
fujiwara
S3 licensed
Lovely to watch.
15/10 just for showing a car with a Euro 2004 Cup skin .
FGED GREDG RDFGDR GSFDG