The online racing simulator
LFSLapper insim4 Release
(2101 posts, closed, started )
so in the new Version, theres possiblity to restrict Qualy Laps? And after reaching the 10 Laps for example, no more time will be recorded anymore?

Greetings,
Xcite | Fireball
Quote from Yisc[NL] :This one is already in the new version:

Event QualStartAction()
EndEvent

Coool Thanks
Quote from fireb0llch :so in the new Version, theres possiblity to restrict Qualy Laps? And after reaching the 10 Laps for example, no more time will be recorded anymore?

Greetings,
Xcite | Fireball

Hi,
You can spectate a player when he drove more then 10 lap's and set a var so he cant leave the pit again.
It's posible to create but it's a lot of work ( i dont have the time the next 2 week's , First i going to skiing :razz.
I cannot upload?
I get error: caught error:Uplaod exception Upload ->

My ftp server is on localhost too, has worked before. Anything I miss out?
Quote from Tim NL :Hi,
You can spectate a player when he drove more then 10 lap's and set a var so he cant leave the pit again.
It's posible to create but it's a lot of work ( i dont have the time the next 2 week's , First i going to skiing :razz.

Yea great idea, Thx! Have fun skiing
FTP problem solved. Had to chmod the dir :/



Yisc, I have a pitboard question. The 'same' times are in Yellow. But well, you don't very often see that. You can do an equal lap, when you are somewhat around your split time (about 1 tenth).

So lets say when I have a best 1st sector of 20.35, then it would be nice to make it green when it is below 20.35, and yellow until 20.50. Then you see that it is worth the lap. When qualifing or practice, I look if the gap is not too much (i usually restart when doing more that 3 tenthss slower), but you have to read very good how much it was.

Just knowing when you see Yellow split, you're on quite a good lap and can drive on
Quote from Riel :
Yisc, I have a pitboard question. The 'same' times are in Yellow. But well, you don't very often see that. You can do an equal lap, when you are somewhat around your split time (about 1 tenth).

So lets say when I have a best 1st sector of 20.35, then it would be nice to make it green when it is below 20.35, and yellow until 20.50. Then you see that it is worth the lap. When qualifing or practice, I look if the gap is not too much (i usually restart when doing more that 3 tenthss slower), but you have to read very good how much it was.

Just knowing when you see Yellow split, you're on quite a good lap and can drive on

That can be done and will be added in V2.x
and maybe naw we can have some news when new version of lapper will out.And question does Pit board will be included in new version of lapper?
Hello,


When new version of LFS will out! . For pitBoard, Yes

No date for now Sorry! We work on own rythm .

Gai-Luron
Nice to heard that.Best luck for you guys


again
Very nice to hear that Lapper and Pitboard are merging! Freaking great work of you both!


Sil
Lapper 5.825 (beta) + Pitboard 2.x (beta)
Update:

- Attempt to fix some buttons showing on top of another one
- Change: When split is within 0.00.15 of best split, split is displayed in yellow (Idea Riel)
- New function: When you choose Race-mode on Pitboard, you can choose between displaying splits of driver in front/behind you, or displaying the gap with the driver in front/behind you

Test server has just been updated so please test as much as possible

Server-name: lapper[test]
Password: testing
Hi All,
I am trying to use Handicaps and keep getting $H_Mass in Sub or Event not defined error. Any ideas ??
Quote from Andy King :Hi All,
I am trying to use Handicaps and keep getting $H_Mass in Sub or Event not defined error. Any ideas ??

Upgrade to 5.716 in order to get that fixed.
LOL that easy eh, cheers Yisc

mmm better update my signature then lol
Hi All,
Quote :$RefreshHandicapUsers - allow Lapper to refresh HandicapUsers on each player leaving pits - Usefull if HandicapUsers is a file and is updated frequently by an external program

Lapper isn't allowing me to edit the Handicaps.flt and then it change the handicap next time the Driver joins.
It allows me to update Qualusers.flt. and excepts that.

Event OnRotateTrack()
IF ($CurrRotateTrack == "AS3")
THEN
cmdLFS("/laps 6");
ELSE
IF ($CurrRotateTrack == "KY3")
THEN
cmdLFS("/laps 4");
ENDIF
ELSE
IF ($CurrRotateTrack == "FE4")
THEN
cmdLFS("/laps 4");
ENDIF
ELSE
IF ($CurrRotateTrack == "AS7")
THEN
cmdLFS("/laps 6");
ENDIF
ELSE
IF ($CurrRotateTrack == "BL1")
THEN
cmdLFS("/laps 9");
ENDIF
ELSE
IF ($CurrRotateTrack == "KY2")
THEN
cmdLFS("/laps 6");
ENDIF
ELSE
IF ($CurrRotateTrack == "AS4")
THEN
cmdLFS("/laps 4");
ENDIF
ENDIF
cmdLFS("/msg Track changed, please wait!" );
cmdLFS("/msg Current Track = " . $CurrLongRotateTrack);
EndEvent

what i did wrong? got a message that synthax is wrong script stopped
Quote from Trekkerfahrer :
what i did wrong? got a message that synthax is wrong script stopped

IF-statements are nested in the wrong way


Event OnRotateTrack()
IF ($CurrRotateTrack == "AS3")
THEN
cmdLFS("/laps 6");
ELSE
IF ($CurrRotateTrack == "KY3")
THEN
cmdLFS("/laps 4");
ELSE
IF ($CurrRotateTrack == "FE4")
THEN
cmdLFS("/laps 4");
ELSE
IF ($CurrRotateTrack == "AS7")
THEN
cmdLFS("/laps 6");
ELSE
IF ($CurrRotateTrack == "BL1")
THEN
cmdLFS("/laps 9");
ELSE
IF ($CurrRotateTrack == "KY2")
THEN
cmdLFS("/laps 6");
ELSE
IF ($CurrRotateTrack == "AS4")
THEN
cmdLFS("/laps 4");
ENDIF
ENDIF
ENDIF
ENDIF
ENDIF
ENDIF
ENDIF

cmdLFS("/msg Track changed, please wait!" );
cmdLFS("/msg Current Track = " . $CurrLongRotateTrack);
EndEvent

Or you could do it this way:


Event OnRotateTrack()
IF ($CurrRotateTrack == "AS3")
THEN
cmdLFS("/laps 6");
ENDIF

IF ($CurrRotateTrack == "KY3")
THEN
cmdLFS("/laps 4");
ENDIF

IF ($CurrRotateTrack == "FE4")
THEN
cmdLFS("/laps 4");
ENDIF

IF ($CurrRotateTrack == "AS7")
THEN
cmdLFS("/laps 6");
ENDIF

IF ($CurrRotateTrack == "BL1")
THEN
cmdLFS("/laps 9");
ENDIF

IF ($CurrRotateTrack == "KY2")
THEN
cmdLFS("/laps 6");
ENDIF

IF ($CurrRotateTrack == "AS4")
THEN
cmdLFS("/laps 4");
ENDIF

cmdLFS("/msg Track changed, please wait!" );
cmdLFS("/msg Current Track = " . $CurrLongRotateTrack);
EndEvent

really thanks m8
me again, is it possible to make a vote for trackchange?
No that's not possible. Trackrotation is hardcoded into Lapper. Ofcourse you could write manual code to work around it. Something (I do this straight out of my head) like this:


Event OnLapperStart()
GlobalVar $TrackChangeVote;
$TrackChangeVote=0;
EndEvent

Register MsgAction("!trackvote",MA_trackvote);
Sub MA_trackvote()
$TrackChangeVote=$TrackChangeVote+1;
IF ($TrackChangeVote == X )
THEN
OnRotateTrack();
$TrackChangeVote=0;
ENDIF
EndSub

what mean this error ?

Please post a bigger image We can't read that... To small
if Lapper devs saying that we will see new version of lapper when new patch will came out i think they done them work and just waiting for new patch lets hope that new lapper could replace CTRA X-System
This thread is closed

LFSLapper insim4 Release
(2101 posts, closed, started )
FGED GREDG RDFGDR GSFDG