Hello
Here is my first ever Lapper script:
It counts how many cars have finished a race.
Problem:
It only works on normal tracks.
On AX layouts nothing happens when the car crosses finish line.
In LFS race is finished, but in Lapper the OnResult() event is not triggerd. OnFinish() is not triggered either.
Is there a different event that has to be used?
The layout is just start-position, checkpoint, finishline, nothing special.
Ps:
In https://www.lfs.net/forum/thread/58433-Release it says "please read doc/readme.txt."
but in http://cgtavc.monespace.net/lapper/download/lapper/LFSLapper6.013b.zip there is no such file?
Here is my first ever Lapper script:
CatchEvent OnLapperStart()
GlobalVar $finishers;
EndCatchEvent
CatchEvent OnResult( $userName,$flagConfirm )
# CatchEvent OnFinish($userName)
globalMsg ("Someone finished the race!");
$finishers = $finishers +1;
globalMsg ($finishers);
EndCatchEvent
It counts how many cars have finished a race.
Problem:
It only works on normal tracks.
On AX layouts nothing happens when the car crosses finish line.
In LFS race is finished, but in Lapper the OnResult() event is not triggerd. OnFinish() is not triggered either.
Is there a different event that has to be used?
The layout is just start-position, checkpoint, finishline, nothing special.
Ps:
In https://www.lfs.net/forum/thread/58433-Release it says "please read doc/readme.txt."
but in http://cgtavc.monespace.net/lapper/download/lapper/LFSLapper6.013b.zip there is no such file?