The online racing simulator
Searching in All forums
(979 results)
dougie-lampkin
S2 licensed
Haven't tried them, but there's a few bits like this one, which slot between the SIM and phone, and remove the network jamming. For ~£5, it's worth a go anyway
dougie-lampkin
S2 licensed
That's DrawRectangle, which paints a rectangle onto a form. The p is the brush. You want just Rectangle, which defines a rectangular area
dougie-lampkin
S2 licensed
Quote from S14 DRIFT :I'm betting mosts of those are just missing files/folders. Not issues really, it just cleans them out.

Yup, I let RegSeeker take care of the whole thing, it now detects ~50 bad entries. Can't say I've noticed an improvement in anything though
dougie-lampkin
S2 licensed
Quote from sun :Dougie, didnt you say that you didnt do it in a while? the System.Drawing method? because i think i understand.

System.Drawing.Rectangle rDefinedArea = new System.Drawing.Rectangle(x1, x2, y1, y2);
if (rDefinedArea.Contains(MCI.Info[index].X, MCI.Info[index].Y))
{
// User is in rectangle
}

so basically you did somthing similar to this?

rDefinedArea = MCI.Info[i].X >= 23120658

?

According to this page, you need to define the height, width and top-left corner of your rectangle.

Or, for a polygon, I think a region would do the trick
dougie-lampkin
S2 licensed
Quote from Bob Smith :Why wait for the devs to do it?

Touché, I can finally drive a lap of that track without drifting off into space


Quote from Echo51 :Just so you know, there are roads, they are just blocked by some gates

Yes, but it's got that problem a lot of blocked LFS areas have, where if you drive on the road you just fall through. You can get to the skid pad from the AutoX area though, except you can't get there by road...
dougie-lampkin
S2 licensed
Thanks Franky, it's working now Cheers for the login update as well, that was damn quick
dougie-lampkin
S2 licensed
Well, why not? In my dream for AX (I haz a dreamsicle! :shy, it's all one big area, so you choose it as one track, and the drag strip, skid pad, kart track and main autox area are all one (well, they are now, it's just a matter of making the roads between them driveable). If a server only wants drag available for example, the roads leading back to the main area could be blocked off

So, a +1 for me.
dougie-lampkin
S2 licensed
Quote from texas_born :I am almost certain someone didnt install a keylogger and i use firefox. I was on a server then all of a sudden i got "kicked off" but not really kicked. after that i could not log in because it said my user name was already online. i changed my pw so maybe that will help.

it works now......weird.

LFS does that sometimes, usually if a server hangs. It boots you (or rather, you time out), but as far as the master server is concerned, that username is still online. It's happened me a few times now, and I haven't been hacked
dougie-lampkin
S2 licensed
Bladey, bad jokes thread is thataway -->

OP: If you have chip and pin, then it's almost definitely a credit card. I've never seen an ATM card with chip and pin. Although I'm not sure how you got a credit card at 14
dougie-lampkin
S2 licensed
I thought Eagle Eye was quite good actually, not as much action as I hoped though

Watched QoS too, thought it was pretty cool, missed the ending though...

Saw FF7: Advent Children (just because of my fond childhood memories of the game :rolleyes recently, was good, but only after playing the game.

Started watching all of the Saws back to back too, on III now. They're OK, they're really not that scary, it's just sudden noises and crap that makes you jump, there's no fear afterwards.

Also watched V for Vendetta last week, one of the best movies I've watched in a while, it actually had a plot, and good action. I'd recommend it anyway
dougie-lampkin
S2 licensed
Made a super special "type-r" beetle for...erm...ricing

And the "Schvimwagen", for "when they come with the dogs in the night"
dougie-lampkin
S2 licensed
Hmm, 90% of people in here are over 6'...LFS is like a superhero camp

Age: 17
Height: 6'1"
Weight: 125 lbs (57ish kg, 9 st)
dougie-lampkin
S2 licensed
Quote from mkinnov8 :Source: http://www.500servers.com/specials.php


Thanks

Pretty sweet deal guys

E: Invalid code for me too...
dougie-lampkin
S2 licensed
Does this apply to web servers too, Franky?
dougie-lampkin
S2 licensed
Screw this, it's at 40,000. To hell with it, I'm getting a proper registry cleaner

Using RegSeeker now, much easier on the eye, told me it was scanning all my HDDs, and now it's scanning the registry, with a delightful little progress bar. And at 40%, it has 974 entries, almost all of which are "unused" file extensions

On top of that, it has a nice shiny "Backup" button which was sorely missing from Regcure...
dougie-lampkin
S2 licensed
Quote from sun :.....

:dnfnoob:

--------------------------

if you read the posts you may get an answer. I'm doing a job place for now someone said i could have it.

Oh God the irony
dougie-lampkin
S2 licensed
Regcure has found over 3000 problems so far, and it's still going

Do I actually have that many reg problems? My boot time is less than 15 seconds going into Ubuntu, and ~30 seconds for Vista, and it says that's the major effect these bad reg entries have

E: Holy mother of pineapples Batman, over 4000 problems at the moment
E2: 5000, what the hell?
E3: Woot, 6000, come on 7!
E4: We have 7 Will it make it to 8,000?
E5: Of course it will Is this thing ever going to end
E6: Umm, guys, it's at 16,000 and has no intention of stopping...Is this thing wiping my entire registry or something
E7: 20,000...Wahay!
E8: Approaching 30,000...I didn't think the registry even had this many files :S
Last edited by dougie-lampkin, .
dougie-lampkin
S2 licensed
I have to say, I haven't heard that one before. 10/10 for originality
dougie-lampkin
S2 licensed
Roughly on-topic, but what are some good registry cleaners? And what exactly do they clean?
dougie-lampkin
S2 licensed
I've been using Avast for ages, but I find it gives way too many false negatives for my liking. Plus it takes years to do a full scan of my entire PC. I tried MalwareBytes today, and it did a full scan in an hour and a half, and found 1 actual infection, in the registry. Plus it didn't mark what Avast marked (even though I know they're safe) as dangerous. I still like Avast's On-Access protection though, it's saved my skin a fair few times with dodgy sites
dougie-lampkin
S2 licensed
if (MCI.Info[index].X <= ... && MCI.Info[index].X >= ... && MCI.Info[index].Y <= ... && MCI.Info[index].Y >= ...)
{
// User is in the rectangle
}

Or, you could define a proper rectangle, but I find that the first way is easier I've not done that in a while, but it's going to be something like

System.Drawing.Rectangle rDefinedArea = new System.Drawing.Rectangle(x1, x2, y1, y2);
if (rDefinedArea.Contains(MCI.Info[index].X, MCI.Info[index].Y))
{
// User is in rectangle
}

dougie-lampkin
S2 licensed
foreach (clsConnection C in Connections)
{
InSim.SendButton(C.Username....);
}

dougie-lampkin
S2 licensed
Ah, there used to be a bug in LFS where if you set AA to off in LFS, it appeared to be off, but your FPS stayed down. Maybe that's still going around?
dougie-lampkin
S2 licensed
Ah, I see...time for some ninja editing then :spin:
dougie-lampkin
S2 licensed
Quote from Tim_J_23 :Everyone in OM can change name.
It's my team and yeah, I've sent email to Victor regarding this.
So better think of a new name.

Ya know, there's two SR teams as well (Storm Racing and Sonicrealms Racing), both use different tag colours and there's never been a mix up once BTW, you can't copyright an LFS tag But, if it's the team name, maybe you guys can come to some peaceful resolution?
Damn, wasn't ninja
Last edited by dougie-lampkin, .
FGED GREDG RDFGDR GSFDG