That's not possible at this moment. This text is generated from inside the program. I like to have the option to change it too, so maybe Gai-Luron can change this is a next release.
Event OnLapperStart()
GlobalVar $Glob_Rotate_counter;
$Glob_Rotate_counter = 2;
GlobalVar $Glob_next_car_count;
$Glob_next_car_count = 1;
EndEvent
Event RaceStartAction()
cmdLFS( "/rcm ^3Clean racing and have fun :-)" );
cmdLFS( "/rcm_all" );
IF ($Glob_next_car_count == 1)
THEN
$Glob_next_car="XRG";
ENDIF
IF ($Glob_next_car_count == 2)
THEN
$Glob_next_car="FBM";
ENDIF
IF ($Glob_next_car_count == 3)
THEN
$Glob_next_car="XFG";
ENDIF
IF ($Glob_Rotate_counter > 1)
THEN
cmdLFS( "/msg ^3Car will be rotated in " . $Glob_Rotate_counter . " races" );
cmdLFS( "/msg ^3Next car will be: " . $Glob_next_car );
$Glob_Rotate_counter=$Glob_Rotate_counter-1;
ELSE
cmdLFS( "/msg ^3Car will be rotated after this race" );
cmdLFS( "/msg ^3Next car will be: " . $Glob_next_car );
$Glob_Rotate_counter=2;
$Glob_next_car_count=$Glob_next_car_count+1;
ENDIF
IF ($Glob_next_car_count > 3)
THEN
$Glob_next_car_count=1;
ENDIF
EndEvent
LFSLapper Version=5.7.1.4 on GNU license
2005-2008 Janez Cufer and Robert BRACCAGNI ( Gai-Luron )
LFSLapper comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions. Read LICENSE for details.
Type LFSLapper -help to view usage
Started : 7/28/2008 10:35:40 PM
Parse config file...Ok
Loading WR...Not Loaded
Loading swearwords...Ok
Mode Sync = False
Connecting
Connection OK
Product:S2 Version:0.5Z InSim Version:4
Web Commands Thread Started...
Register Web Thread Started...
LFSLapper is running...
[COLOR=red]Syntax error in cfg file: var $pitb need '=' at line #306 in function 'OnLapperStart' script aborted[/COLOR]
###################################
#Event triggered when lapper start#
###################################
Event OnLapperStart()
[COLOR=red]PlayerVar $pitb; #this is line #306[/COLOR]
$pitb = "0" ;
GlobalVar $origL ;
$origL = "50" ;
GlobalVar $origT ;
$origT = "40" ;
GlobalVar $PBorigL ;
$PBorigL = "1" ;
GlobalVar $PBorigT ;
$PBorigT = "70" ;
GlobalVar $PB2Left ;
$PB2Left = "0" ;
EndEvent
$pitb = 0;
Event OnLapperStart()
[COLOR=red]PlayerVar $pitb; (this is line #306 in PSPad) When i use GlobalVar $pitb; it works.[/COLOR]
$pitb = 0;
GlobalVar $origL ;
$origL = "50" ;
GlobalVar $origT ;
$origT = "40" ;
GlobalVar $PBorigL ;
$PBorigL = "1" ;
GlobalVar $PBorigT ;
$PBorigT = "70" ;
GlobalVar $PB2Left ;
$PB2Left = "0" ;
EndEvent
Event OnLapperStart()
PlayerVar $testvar = 0;
EndEvent
Register ScheduleAction( "ss mm hh dd MM YYYY", SA_event );
Sub SA_event()
cmdLFS("/rcm RACE Event start NOW!");
cmdLFS("/rcm_all");
cmdLFS("/pass secret");
IF( $Username != "&./your_file" )
THEN
cmdLFS( "/kick " . $Username );
ENDIF
EndSub