The online racing simulator
Searching in All forums
(941 results)
PoVo
S3 licensed
Quote from Franky.S :haters, hate.

Yeah because that's your only good comeback to an argument.

You're the hater here.
PoVo
S3 licensed
If majority of players prefer cruise servers in a racing simulator, it means the race servers are crap.

Age doesn't matter. There are plenty of 12 year olds who are much more mature than 17 year olds. You're acting like a little kid yourself with your "I'm older than you" behavior.

Any normal racer in LFS who doesn't like cruising will just ignore the cruise players, servers and threads and will continue to play where they like.

Seems like you have a nasty itch that's forcing you to rant on pointlessly.
PoVo
S3 licensed
For every cruise server thread there are multiple so called "racers" that rant about cruise servers.

Look in the bigger picture, you're just a bunch of pathetic moaners who waste more time commenting in these threads than racing yourselves.

I understand that racers hate cruise servers, but if the majority of today's LFS players enjoy cruise servers, the problem is the race servers being crap and not the cruise servers themselves.

PoVo
S3 licensed
Quote from [Audi TT] :InSim packed this weight on server.

No it won't
PoVo
S3 licensed
I'm not sure if it's a very good idea for such a thing to be implemented at this time because it's a bit of a waste of time.

This is all possible with a simple InSim application.

The concept of the idea is very good but I don't see a reason why the developers should waste their time on minor issues at this moment as there is other major work to be done.
PoVo
S3 licensed
Very nice! Well done :P
PoVo
S3 licensed
Oh right, I didn't read your post correctly, thought it was 2.62 or above. Thanks.
PoVo
S3 licensed
Apparently is my Shadowwwwwwwwwwwww
PoVo
S3 licensed
Quote from skstibi :Glad I have E.Reiljans on my ignore list. Cleans out a lot of that Dolan crap.

Reply to below: No content analyzer needed. The last few pages were reason enough.
I know I am not the only one that can't stand that crap and I block anyone that posts it regularly.

PoVo
S3 licensed
Thank you! I'm going to test it now

EDIT: I get this error when I try to import any car
Last edited by PoVo, .
PoVo
S3 licensed
For a cruise server, to make "shops" you use the X/Y coordinates and not nodes.

But as MadCatX said, nodes are only useful for closed-config tracks and not open-config tracks.
PoVo
S3 licensed
Kyoto with a demo license? *cough cough*
PoVo
S3 licensed
In LFS nodes are just different sectors in the path of the track.

They can be used to tell at which part of the track you currently are, and this is used for cruise servers to make street names.

Those 2 numbers are just used to check if a player is in a node between that range of 2 numbers which means that it is some street.

You can get node numbers from the CompCar packet when you receive an IS_MCI event
PoVo
S3 licensed
Quote from G!NhO :It is a jetta though

That's no excuse to look like this though...
PoVo
S3 licensed
But why should it be 1200km if you wrote smaller or equal to 199? That means that you need 200km and not 1200km.
PoVo
S3 licensed
Quote from xhector :Here is the code that checks our total distance:
[COLOR=#0000ff][B]if[/B][/COLOR] (NPL.CName == [COLOR=#0000ff]"XRG"[/COLOR] && Connections[[COLOR=#191970][B]GetConnIdx[/B][/COLOR](NPL.UCID)].TotalDistance / [COLOR=#00008b]1000[/COLOR] <= [COLOR=#00008b]199[/COLOR])
{
InSim.[COLOR=#191970][B]Send_MST_Message[/B][/COLOR]([COLOR=#0000ff]"/spec "[/COLOR] + Connections[[COLOR=#191970][B]GetConnIdx[/B][/COLOR](NPL.UCID)].Username);
[COLOR=#0000ff][B]if[/B][/COLOR] (Connections[[COLOR=#191970][B]GetConnIdx[/B][/COLOR](NPL.UCID)].MilesOrKilometers == [COLOR=#00008b]0[/COLOR])
{
InSim.[COLOR=#191970][B]Send_MTC_MessageToConnection[/B][/COLOR]([COLOR=#0000ff]"^6»^7 You need ^1200km ^7to drive a ^1"[/COLOR] + NPL.CName, NPL.UCID, [COLOR=#00008b]0[/COLOR]);
}

I dont understand this:
TotalDistance / [COLOR=#00008b]1000[/COLOR] <= [COLOR=#00008b]199[/COLOR])

The distance should be 1200 km but....
if my total distance is 100 km
100 / 1000 = 0.1 then if 0.1 mean 100 kilometers i have drive 200 000 km?!

TotalDistance is meters, so if you divide it by 1000 you have it in kilometers. So if your TotalDistance is smaller than 200, you won't be able to drive the car.

If you manually set your TotalDistance in your user's txt file, you need to write it in meters.

1200km = 1200000 meters.
PoVo
S3 licensed
Read the source code and find out.
PoVo
S3 licensed
Quote from rycyu :with all i want a cruise like LSC or UC

Search the forum and download
PoVo
S3 licensed
Quote from rycyu :hi,who can help me with a cruise insim? help

You should write what exactly you're having trouble with if you want help.
PoVo
S3 licensed
How the hell is the "rotation speed of the hdd" slower if my Caviar Green HDD says 7,200 RPM?
PoVo
S3 licensed
Quote from hyntty :No i realized it now, presumably you want to do something else too besides deleting the button..

His button text is an X so I presume he wants to delete a number of buttons to close a window.
PoVo
S3 licensed
Quote from dadge :Stop buying green editions. it's market talk for 5400rpm.

No it's not.
PoVo
S3 licensed
Quote from hyntty :wat

Since you know the clickID and UCID already, why not just say DeleteButton(ClickID, UCID) instead of making a useless case structure? I must be missing something here?

He wants to delete when the button is clicked.
PoVo
S3 licensed
When you create a button you set a click id. When you receive an IS_BTC packet event, you check if the BTC->ClickID equals to the button id and then delete the button if it does.


<?php 
CreateButton
("TEXT", {clickid},...);

void btcEvent(IS_BTC btc)
{
     if (
btc.ClickId == {clickid})
     {
            
DeleteButton({clickid},...);
     }
}
?>

And then if you have many buttons, you use a switch block:


<?php 
CreateButton
("TEXT", {clickid},...);
CreateButton("TEXT", {clickid2},...);
CreateButton("TEXT", {clickid3},...);
CreateButton("TEXT", {clickid4},...);
CreateButton("TEXT", {clickid5},...);

void btcEvent(IS_BTC btc)
{
     switch (
btc.ClickId)
     {
            case {
clickid}:
                 
DeleteButton({clickid},...);
                 break;

            case {
clickid2}:
                 
DeleteButton({clickid2},...);
                 break;

            case {
clickid3}:
                 
DeleteButton({clickid3},...);
                 break;

            case {
clickid4}:
                 
DeleteButton({clickid4},...);
                 break;

            case {
clickid5}:
                 
DeleteButton({clickid5},...);
                 break;
     }
}
?>

Last edited by PoVo, .
PoVo
S3 licensed
Quote from E.Reiljans :There also is an extended version


There bus is also magically swapped with a double-decker.
FGED GREDG RDFGDR GSFDG