Hi fellow racers!
I just started to study the LFS lapper and find it a great tool. I intend to run a driftserver.
I have searched the forums for a specific question (studied the "Lfs lapper help (drift points) " thread) but failed to find a solution.
I use LFS Lapper 5.9.2.5.
QUESTION: How do I make !drf display drivers driftpoints? (or is that table even for drift scores?)
Is it something simple or do I need to make an ftp server to make the results available? As it is now, I record the scores in ./Default/DriftPB.ELP (and ..DriftDB.DBS I guess?). I can see the drift PB's in DriftPB.ELP along with the driver names etc - on my harddrive (default path for Lapper). The driftmeter and scoring works ok during the race, but when typing !drf, there is nothing there (see attatched picture).
I suspect I need to do some editing in the drift options section for various events?
This is what my code looks like at the moment (as you see there is nothing);
Grateful for any help. Meanwhile, I will hunt for threads I might have missed. .
Cheers!
I just started to study the LFS lapper and find it a great tool. I intend to run a driftserver.
I have searched the forums for a specific question (studied the "Lfs lapper help (drift points) " thread) but failed to find a solution.
I use LFS Lapper 5.9.2.5.
QUESTION: How do I make !drf display drivers driftpoints? (or is that table even for drift scores?)
Is it something simple or do I need to make an ftp server to make the results available? As it is now, I record the scores in ./Default/DriftPB.ELP (and ..DriftDB.DBS I guess?). I can see the drift PB's in DriftPB.ELP along with the driver names etc - on my harddrive (default path for Lapper). The driftmeter and scoring works ok during the race, but when typing !drf, there is nothing there (see attatched picture).
I suspect I need to do some editing in the drift options section for various events?
This is what my code looks like at the moment (as you see there is nothing);
$DriftDatabase = "./DriftPB";
$MinimumDriftSpeed = 50; # Minimum speed in km/h to maintain. Driving below that speed will reset score
$MinimumDriftAngle = 15; # Minimum angel to maintain. When angle is below value, score is reset
$MaximumDriftAngle = 100; # Maximum angel to maintain. When angle is above value, score is reset
# Actions to do on new personal best drift lap.
Event OnDriftPB( $userName ) # Player event
EndEvent
# Actions to do to when total lap drift score is higher or equal to MinimumDriftScore.
Event OnDriftLap( $userName ) # Player event
EndEvent
Event OnDriftScore( $userName ) # Player event
EndEvent
$GoodDriftScore = 4000; # Value to be reached to execute action on good drift score
Event OnGoodDrift( $userName ) # Player event
EndEvent
$MinimumDriftScore = 10; # Minimum drift score required
# Actions to do at end of lap if MinimumDriftScore is not achieved.
Event OnDriftTooLow( $userName ) # Player event
EndEvent
# Actions to do when drift score is resette to zero when to low speed.
Event OnDriftResetScore( $userName ) # Player event
EndEvent
Grateful for any help. Meanwhile, I will hunt for threads I might have missed. .
Cheers!