I've just read about the new release of Lapper and suddenly realised I have an updated version of connected.lpr on my pc for months now. I've changed it a long time ago to accomodate a wish for a more random qualifying procedure.
When you have admin rights within Lapper, you will see 2 extra buttons behind a players name:
p_exit = displays a global chatmessage + RCM to selected player to go to pitlane exit
s_qual = displays a global chatmessage + RCM to selected player to start qualification
This could be useful when doing a single car qualification at oval races.
For example:
First car does outlap
Second car waits at the end of the pitlane
First car starts hotlap
Second car starts outlap
Third car goes to the end of the pitlane
etc. etc.
In the past I used the connected list from top to bottom or reversed but there was a need for a more random order. Now you can pick anyone you want and when a button is pressed it will color green so you know who has done what.
Since !status is used for something else, I've changed my command to !plstatus
Make sure to update this in your main configuration file.
I've included an updated version of connected.lpr which is renamed to connected.txt in order to be able to upload it on this forum.
When you have admin rights within Lapper, you will see 2 extra buttons behind a players name:
p_exit = displays a global chatmessage + RCM to selected player to go to pitlane exit
s_qual = displays a global chatmessage + RCM to selected player to start qualification
This could be useful when doing a single car qualification at oval races.
For example:
First car does outlap
Second car waits at the end of the pitlane
First car starts hotlap
Second car starts outlap
Third car goes to the end of the pitlane
etc. etc.
In the past I used the connected list from top to bottom or reversed but there was a need for a more random order. Now you can pick anyone you want and when a button is pressed it will color green so you know who has done what.
Since !status is used for something else, I've changed my command to !plstatus
Make sure to update this in your main configuration file.
Event OnMSO( $text ) # Player event
SWITCH( $command )
CASE "!plstatus":
set_player_status ( $KeyFlags , $argv );
BREAK;
ENDSWITCH
EndEvent
I've included an updated version of connected.lpr which is renamed to connected.txt in order to be able to upload it on this forum.