The online racing simulator
Searching in All forums
(788 results)
the_angry_angel
S3 licensed
Assuming the rest of the world follows UK standards, typically when you input an UK number from an international destination you drop the leading 0 in favour of the country code.

i.e. My number maybe 01234 123456 (it's not incidentally), and the UK country code is +44, so the international number for that would be +441234123456, which over here can also be written +44 (0) 1234 123456.

Hopefully that answers your question? If there was one?
the_angry_angel
S3 licensed
Quote from ed-k :dont you have s2 ?

Not here and last I checked there weren't enough people on the server to do a vote kick.
the_angry_angel
S3 licensed
Quote from ed-k :but can you not look in the server driftwars us and try kick eddy

How? The only people who can do that are the developers and the admins who run that server? I am neither of those things
the_angry_angel
S3 licensed
Hi eddy, I'd suggest contacting the developers directly via http://www.lfs.net/?page=mailus, if you've been stuck on the host for more than a hour or so and can't get back online. It sounds like either the server has gotten stuck, or if the master hasn't removed you correctly.
the_angry_angel
S3 licensed
Quote from RocksGt :Not sure about this one at all

I'd argue that none of the answers are 100% correct tbh. I can remember the reason given (at least on the BBC at the time [I'm 99% sure it was the BBC back then still anyway]) and I'm sure it doesn't match any of these 100%. However, you can infer which one should be the right answer..

A bit cryptic I know, but that might make sense to someone
the_angry_angel
S3 licensed
Quote from dungbeetle :Once all the 'nudge-nudge, wink-wink' jokes are done and dusted, I think a female presenter provides a good contrast to the guys.

I'm sure that Jessica is a talented young lady and enjoys her work, despite being unfamiliar with sim racing. However, lets look at this from a marketing point of view - the average sim racer is male, and if you go by the average LFS forum age, probably between 15-25 and most likely single or not in a serious relationship (I've pulled that last one out of my arse, but I'd maintain that it's likely to be true).

Now look at the change in SRT to ISR. There's now undeniably someone behind it who knows who to turn it into a self sufficient business and how to drive it's continued success.

Maybe I'm just being cynical, but there's an undeniable relationship between the two.

Now I'm not saying this is necessarily a bad thing, but it is an observation that you cannot ignore
the_angry_angel
S3 licensed
You certainly seem to be appealing to the 15 year old pocket mining demographic now However, it's nice to see this episode isn't as ad heavy as special report, and it's also nice to hear a lot of the dialog getting a lot smoother :up:
the_angry_angel
S3 licensed
My Dad did things like #1 to people who annoyed him at the shops He was an evil bugger!

This thread certainly brightened my day, cheers Mackie
the_angry_angel
S3 licensed
Looks like you're online now - I guess that was good news? :up:
the_angry_angel
S3 licensed
Quote from monkeejr1 :Hey guys i try making my own server, and when i click "ok" to load the map i get a message that says TCP SOCKET: BIND FAILED

Odds are you set the /ip parameter with an IP which is not present on your machine. This setting is for machines with multiple IP addresses only and you shouldn't use it if you're not familiar with the point of it.

May I suggest looking at this thread for more information? Much of it is orientated around using a dedicated server, but there is a brief paragraph at the top which explains which sections to look at for any type of server.

http://www.lfsforum.net/showthread.php?t=9572
the_angry_angel
S3 licensed
Quote from sun :ok, guys, where going abit off the topic here in the thread...

A thread is analogous to a conversation, so it will naturally start on one thing and then continue to another issue which is slightly related.

If people want this subforum to turn into a "please solve my issue and then close" stage, then fair enough, but the OP will have to let me or one of the other mods know so that we can close the thread.

However, in my opinion it benefits others by having a continuing conversation; for example - the updated cruise example posted earlier from mcgas001.

If the thread turns into an argument a mod will take the decision of whether or not it gets closed to prevent a full scale riot.

Quote from wild :I think this topic needs Closed as it has been answered fully.

If you feel a topic should be closed or a post removed, etc. please use the "report this post" feature. All mods are informed when this is done and it will alert most of the moderators who are online, but not on the LFS forums.

Also sun, could you cut down the calling of people idiots. I've seen you do this in multiple threads now and the whole idea seems to cause more arguments than just plain swearing. It seems people take more offence(!).
the_angry_angel
S3 licensed
The only person who could answer that would be Scawen. I'd imagine he'd include it eventually, but as for when, who knows
the_angry_angel
S3 licensed
My best guess would be that if it's going to happen, it's most likely to happen when the demo licencing system gets push to full version
the_angry_angel
S3 licensed
Quote from Gekkibi :Was that an inside-information?

Nope, but look at it logically - what would the developers benefit from keeping older versions accessible, with content that is currently not available in older versions, when their entire business model is basically selling content, not patch levels?
the_angry_angel
S3 licensed
http://www.lfs.net/download/LFS_S2_DEDI_X10.zip

It's unknown how much longer 0.5X10 will be supported on the master server, however.
the_angry_angel
S3 licensed
This has been known to be caused by a Windows PC going into hibernate - does he use that?

Also can you get him to check to make sure that the entire data directory, in particular the data/misc directory is writable with his user account and that the existing files are not read only.

With regards to the unlock, the only way he'd get that would be to contact the devs directly here:
http://www.lfs.net/?page=mailus
the_angry_angel
S3 licensed
It took me 10 seconds with google to find out how to do it "the .NET" way:
http://www.codeproject.com/KB/dotnet/config.aspx

To do it the general way you need to apply some basic thought processes. If you want to create something like LFS uses, or some basic key = value system you need to read the file line by line. Read up until your key delimiter (in this case a = symbol), strip any additional spaces, assign the key in some sort of array or dictionary or some other medium for saving your data. Read the rest of the line, stripping out your delimiter, and assign this as your value for your key in the same array or dictionary, or whatever it is you're using to store your configuration values. If you want to do it this way you need to lookup how to read a file line by line (Readline from the StreamReader object will do nicely) and then how to split a string (String.Split). I'm guessing you'll also want information on storing this information, which you can use what some languages would call a dictionary, or an associative array.

Alternatively you can do it the "ini way", which would either be to write up something that basically does the above, or you can use the win32 api (example here: http://jachman.wordpress.com/2 ... ccess-ini-files-in-c-net/, or a pre-wrapped class here: http://www.doogal.co.uk/inifile.php).

Now let me point something out. I don't use any of the .NET languages. I don't have any of the .NET related tools on any of my machines bar the actual framework. I'm not a brilliant programmer at all. The simple fact is that I've spent less time doing some research than you guys have actually spent typing a post(!!!)
the_angry_angel
S3 licensed
Nope, what you're looking at there is just the code to unpack the compcar structure and make it more usable.
the_angry_angel
S3 licensed
For that sort of thing you're best of talking directly to the developers if you're having trouble receiving email from LFS.net;
http://www.lfs.net/?page=mailus
the_angry_angel
S3 licensed
:up: Enjoy and welcome to the rank-and-file
the_angry_angel
S3 licensed
It's correct on some of the vehicles, yes I guess you've only tried those with sequential gear boxes?
the_angry_angel
S3 licensed
Glad its working dude :up: Enjoy!
the_angry_angel
S3 licensed
See this post for an updated version that uses LFS External 1.1.

I would also again like to take the opportunity to point out that I am not the author of this project.
the_angry_angel
S3 licensed
Sorry but I can't see this developing into anything but an argument.
the_angry_angel
S3 licensed
Quote from dougie-lampkin :[OT] Why is everyone using the old LFS_External anyway? I converted my apps into the new one in an evening, and it is much quicker...the old version seems to crash a lot with .5 MCI intervals, but the new one doesn't...It also has a much neater layout inside, and it's far easier to find what you want...plus an entire solution can be converted in less than 30 minutes [/OT]

Probably because the example hasn't been coverted? If someone wants to do that I'll happily point the download towards that modified version.
FGED GREDG RDFGDR GSFDG