The online racing simulator
Searching in All forums
(957 results)
anbiddulph
S3 licensed
Quote from scrawny789 :when i try to run lfs that iv just newly installed all i get is an eroor box saying 'probable error in graphics driver' what does this mean!!!????? HELP LOL

it means there is probably something wrong with your graphics driver
anbiddulph
S3 licensed
hey guys whats all the fuss about?
anbiddulph
S3 licensed
Quote from mclarenmatt :Right might as well re-use my old thread

Im getting to the stage now where Im looking into booking everything up but I have a little question.

If I can ride any CC, could I for example buy a nice 400cc bike and get it restricted until Im 21? Then I could get it de-restricted again when I pass at 21.

yes you can, as long as you have your license for 2 years you can deristrict it
anbiddulph
S3 licensed
I find it funny how Dawesdust recognises major problems almost as cool features

"do you see any other phone doing this? Iphone 4 is unique, STFU"
anbiddulph
S3 licensed
Quote from Furiously-Fast :Well there is a demo showing the in-game gameplay. Should hopefully feel like burnout paradise, but the cars slightly heavier. (which was good physics wise)
http://www.youtube.com/watch?v=nBHl09cFkRg

The HUD also looks sleek.

EDIT: found out there is at least one tuner: the Audi TT RS. I'm happy now. :P

wait wait wait, what do you class as a tuner???
anbiddulph
S3 licensed
Quote from ZiemO :Dude, have you ever seen 300+ HP car (i.e. FZ5) being unable to drift?
Imo, even the weaker XRT will do the job nicely as well. So, you'd better not care about that, I'm sure it'll be great, as mustang said

what i think he means is that the drifters are used to how the physics are now, they would have to learn all again how to drift, meaning they will do it wrong :P
anbiddulph
S3 licensed
Quote from rc10racer :The leak is pretty bad from the BP streams.

http://mfile.akamai.com/97892/ ... ctor:45685.asx?bkup=49182


anyone know what happened to the camera?
anbiddulph
S3 licensed
Quote from bunder9999 :

that was 'just' that pile i think...
anbiddulph
S3 licensed
Quote from oli17 :whats the difference between 32 and 64 bit and does it matter which i buy?

32 bit means that it cannot recognise more than 4GB of memory (note... this does not mean your hard drive, it means RAM, Graphics, etc.)
64 bit can recognise alot more than that, but if you are upgrading a laptop, it may not be 64bit compatible, so if your not planning to use more than 3GB ram, i'd stick to 32bit, just incase there is a compatibility issue
anbiddulph
S3 licensed
Quote from oli17 :is that legit?? how can it be so cheap?

well, I'm on windows 7 that i got from that site for £36... So yeah, it's legit

EDIT: http://www.microsoft.com/uk/ed ... are4students/default.aspx
anbiddulph
S3 licensed
well, if your a student you can get it cheaper

http://www.software4students.co.uk
anbiddulph
S3 licensed
for the suspension, maybe look at the shocks off a large dirt bike? if they are too soft, maybe doubble them up?
anbiddulph
S3 licensed
goatse...

but seriously wtf
anbiddulph
S3 licensed
Bob

oh... wait...
B0b0RiFt0
anbiddulph
S3 licensed
Quote from rockclan :Hey Scawen,

Today I decided to record some shots for a movie.

When putting my legal Fraps on Full-Size, the FPS on 30, I found out whilst recording my LFS would start lagging horrible. The FPS did not drop so something else was going on, this has to be since I have a ATI HD 4850 videocard.

When checking what it was I found out that my Quad Core had been pushing one core till 100%, and the other cores had been sleeping.

I know LFS is a single core program, but this is just wrong. People with slower PC's will have less problems then myself with a pretty expensive PC.

When normally driving the game runs as smooth as jelly, and when I start recording everything goes wrong.

Is there something you can do about this in the future, or is this a to far from my bed show?

Looking forward to your response.


Kind Regards,

Rocky

Fraps always lowers your framerate, you could try running LFS on one core, Fraps on the second and everything else on 3+4
anbiddulph
S3 licensed
community online :P
anbiddulph
S3 licensed
mytwitbooker
anbiddulph
S3 licensed
Quote from anttt69 :Fan does what it wants so its auto.
As for the GPU overheating that was my question in the first place is it to hot?

Sod it i'll answer it myself, 60deg is not a healthy idle temp, time for some DIY.

like already stated, it depends on the card
anbiddulph
S3 licensed
Quote from JO53PHS :What are the 8 principles of the data protection act?

AS Computing :P
personal data shall be processed fairly and lawfuly

personal data shall be obtained only for one or more specified and lawful
purposes

Personal data shall be adiquate, relevant and not excessive

Personal data shall be accurate and up to date

Personal data kept for any purpose shall not be kept longer than nessesary

Personal data shall be processed in accordance with the rights of the data subject

Personal data must be kept safe

personal data must not be transferred outside the EU unless the country has similar laws in place
anbiddulph
S3 licensed
Quote from matijapkc :http://en.lfsmanual.net/wiki/Main_Page
I was helping some beginner...
EDIT:
Can we add your Hangman to LFS Insim, so we can play Hangman while racing online?

sure but you will have do edit it a bit, and tell me the name of the surver you are playing on :P Its written in Delphi....
anbiddulph
S3 licensed
16777216
anbiddulph
S3 licensed
program Hangman;

{$APPTYPE CONSOLE}

uses
SysUtils, strutils;
type
TBoard = array[1..30] of String[1];
TMan = array[1..6] of string;
var
Word:string;
Guess:string[1];
guessno:integer;
Guesses:array[1..26] of string[1];
WordLength, X:Integer;
Characters:array[1..30] of string[1];
Board:TBoard;
WordsFile:TextFile;
NoWords, WordSelect:Integer;
Words:array[1..200] of string;
Win:Boolean;
man:TMan;
Inp:String;
lives:integer;
Lose:boolean;
guessright:boolean;


Procedure ReadFile;
begin
assignfile(WordsFile, 'C:\Users\Jack\Code\Hangman\Words.txt');
reset(WordsFile);
X:=1;
while not eof(WordsFile) do
begin
Readln(WordsFile, Words[X]);
Words[X]:=Lowercase(Words[X]);
X:=X+1;
end;
NoWords:=x-1;
Closefile(WordsFile);
end;

procedure Start;
begin
writeln('HANGMAN!');
Writeln(' _____ ');
Writeln(' | | ');
Writeln(' | O ');
Writeln(' | /|\');
Writeln(' | / \');
Writeln(' |______');
Writeln;
Writeln;

end;

Procedure MakeImages;
begin
if lives=0 then
begin
man[1]:='_____ ';
Man[2]:='| | ';
Man[3]:='| O ';
Man[4]:='| /|\';
Man[5]:='| / \';
Man[6]:='|______';
end;
if lives=1 then
begin
man[1]:='_____ ';
Man[2]:='| | ';
Man[3]:='| O ';
Man[4]:='| /|\';
Man[5]:='| ';
Man[6]:='|______';
end;
if lives=2 then
begin
man[1]:='_____ ';
Man[2]:='| | ';
Man[3]:='| O ';
Man[4]:='| | ';
Man[5]:='| ';
Man[6]:='|______';
end;
if lives=3 then
begin
man[1]:='_____ ';
Man[2]:='| | ';
Man[3]:='| O ';
Man[4]:='| ';
Man[5]:='| ';
Man[6]:='|______';
end;
if lives=4 then
begin
man[1]:='_____ ';
Man[2]:='| | ';
Man[3]:='| ';
Man[4]:='| ';
Man[5]:='| ';
Man[6]:='|______';
end;
if lives=5 then
begin
man[1]:='_____ ';
Man[2]:='| ';
Man[3]:='| ';
Man[4]:='| ';
Man[5]:='| ';
Man[6]:='|______';
end;
if lives=6 then
begin
man[1]:=' ';
Man[2]:='| ';
Man[3]:='| ';
Man[4]:='| ';
Man[5]:='| ';
Man[6]:='|______';
end;
if lives=7 then
begin
man[1]:=' ';
Man[2]:=' ';
Man[3]:=' ';
Man[4]:=' ';
Man[5]:=' ';
Man[6]:=' ______';
end;
end;
procedure GetWord;
begin
randomize;
Lives:=7;
WordSelect:=random(NoWords-1)+1;
Word:=words[wordselect];
WordLength:=length(Word);
for X := 1 to WordLength do
Begin
Characters[X]:= Midstr(Word, X, 1);
End;
Guessno:=1;
end;

Procedure ClearBoard;
begin
for X :=1 to 30 do
Board[X]:='_';
for X:=1 to 26 do
Guesses[x]:='';
end;

Procedure DisplayBoard;
begin
write('Used : ');
for x:=1 to 26 do
Write(guesses[x], ' ');
Writeln;
for X:=1 to 6 do
Writeln(' ', man[x]);
for X :=1 to WordLength do
Write(Board[X], ' ');
Writeln;



end;

Procedure Gues;
begin
write('Guess: ');
Readln(guess);
guess:=lowercase(guess);
Guesses[Guessno]:=guess;
Guessright:=false;
for X := 1 to WordLength do
begin
if Characters[X] = Guess then
begin
Board[X]:=Guess;
Guessright:=true;
end;
end;
if Guessright=false then
Lives:=Lives-1;
Guessno:=Guessno+1;
end;

Procedure CheckIfWon;
begin
Win:=True;
for X:=1 to WordLength do
begin
if Board[X]= '_' then
Win:=false;
end;

end;

Procedure CheckIfLost;
begin
Lose:=False;
if Lives=0 then
lose:=true;
end;

begin
ReadFile;
Start;
repeat
GetWord;
ClearBoard;
MakeImages;
DisplayBoard;
repeat
Gues;
makeImages;
DisplayBoard;
CheckIfWon;
CheckIfLost;
until (Win=True) or (lose=true);
if Win=true then
Writeln('You got the word! You win!');
if Lose=true then
begin
writeln('Looks Like your dead mate...');
Write('The word was ');
for X := 1 to WordLength do
Begin
write(Characters[X]);
End;
Writeln;
end;
Writeln('play again? (Y/N)');
Readln(inp);
until (inp= 'n') or (inp='N');
end.
anbiddulph
S3 licensed
Quote from anbiddulph :back to rigs:

New parts:

Intel E8400 3ghz (no overclock)
ATI Radeon HD 4650 512mb
4 GB ram (2X2GB)
Gigabite Motherboard (dunno which 1)

Origional parts (~7 years old!)
some old 80GB hard drive
HP Pavilion t250 case :P

upgraded a while back, hard drive, 500GB SATAII HardDrive
Recently upgraded, new graphics card, AHI HD5770 1GB Vapor-X
A steal at £50
FGED GREDG RDFGDR GSFDG