+-------------------------------+
|Changes from v5.911 to 5.912 |
+-------------------------------+
Change LFSLapper.exe and LFSLapper.lpr, pitBoard.lpr, who.lpr
1. Fix some error on script due to case sensitivity in GetCurrentPlayerVar And GetPlayerVar
Thank you very much Tim NL
2. who.lpr now present in release
# Configuration of LFSServer to be Managed with LFSLapper
# One line per server
# Remote port is the port used to manage LFSLapper remotely, future extension
# One remote port per LFSLapper on one machine, autoStart is optionnal
#Unique ID|GroupId|Ip|Port|WorkDir|IniFile|autoStart
remotePort=3001;
RR_XFG|gr1|127.0.0.1|29989|./RR|RR_XFG.ini|autowork
#RR_PUB|gr1|127.0.0.1|29996|./RR|RR_PUB.ini|autowork
#AB_MID|gr2|127.0.0.1|29991|./AB|AB_MID.ini|autoWork
#AB_FOR|gr2|127.0.0.1|29993|./AB|AB_FOR.ini|autoWork
#AB_END|gr2|127.0.0.1|29994|./AB|AB_END.ini|autoWork
#AB_S2L|gr2|127.0.0.1|29995|./AB|AB_S2L.ini|autoWork
#RR_L13|gr1|127.0.0.1|29999|./RR|RR_L13.ini|autowork
#RR_BNG|gr1|127.0.0.1|29982|./RR|RR_Banger.ini
#RR_S2L|gr1|127.0.0.1|29998|./RR|RR_S2L.ini|autowork
+-------------------------------+
|Changes from v5.910 to 5.911 |
+-------------------------------+
Change LFSLapper.exe and defPitInfo.lpr from previous version
1. Fix error on retreive value in stored DBS
2. Fix error when no car is selected
3. Fix error in defpit.lpr script
+-------------------------------+
|Changes from v5.906 to 5.910 |
+-------------------------------+
**** CHANGING TO 5.9 BECAUSE OF BIG CHANGE IN GLScript, Very hard coding ****
1. Rewrite a big part of GLScript Parsing and lexer to cache compilation code.
Now very Speed up the execution of the code. Very hard coding
Try !gui one time ( caching at this point ), then type !gui ( very faster )
2. Add new GLScript function
GetListTop( $argv )
$argv is the same meaning arg as !top XRG etc...
$list = GetListTop( $argv );
This command return a 2 dimension arrayVar containing the result of the top
Write a test in your script with dumpVar( $list ) to view all available value
or take a look at tops.lpr the use
3. Create a new script ( to be finished ) for replace builtin command !top with a GLscript command file, you can
modify your top look as you want.
To view this new top type !mytop in chat line
This top is the same as old but only writed in GLScript :-), i remove the builtin code when i finish this
script.
Sub myPm( $from, $to, $msg )
privMsg( $to,"PM from " . $from );
privMsg( $to,$msg );
privMsg( $from,"PM to " . $to );
privMsg( $from,$msg );
EndSub