Hi
I've been playing around with making a Lapper leaderboard (actually it's a pitboard but as Yisc[NL] has already used that name for what is really a leaderboard! ).
Coding works ok.
But (as usual), use at your own risk.
If you know what you're doing, you'll be fine.
Cut and paste into Splitting (general action when passing split) section, in the Event OnLap() part.
There's a bit at bottom of text file that needs to be copied into your LANG section.
CODING HELP WANTED.
I've been trying different IF....ENDIF statements to get this code to ONLY show when the pitboard is OFF.
or
but everything I do just seems to switch the leaderboard off.
I'm currently using without IF coding.
However, I'd like to have it that if people don't use the pitboard, they have the leaderboard, and vice versa.
(If you want to have both, you'll need to change coding so that it's higher up the screen, otherwise the leaderboard will overlay on top of the pitboard - I'd suggest moving 30 or 40 up - for instance, where it has openPrivButton( "leaderboardback",1,70,30,34,12,7,16......", change this to openPrivButton("leaderboardback",1,30,30,34,12,7,16....." - adjust second number of all buttons accordingly - - 2nd last number in the line means that it will show for 7 seconds - you could change to -1 so never closes)
Anyone help?
I've been playing around with making a Lapper leaderboard (actually it's a pitboard but as Yisc[NL] has already used that name for what is really a leaderboard! ).
Coding works ok.
But (as usual), use at your own risk.
If you know what you're doing, you'll be fine.
Cut and paste into Splitting (general action when passing split) section, in the Event OnLap() part.
There's a bit at bottom of text file that needs to be copied into your LANG section.
CODING HELP WANTED.
I've been trying different IF....ENDIF statements to get this code to ONLY show when the pitboard is OFF.
IF ( $enable_pitboard == "[COLOR=Blue]true[/COLOR]" )
THEN
# do nothing
ELSE
#put code here
END IF
or
IF ( $enable_pitboard == "[COLOR=Blue]false[/COLOR]" )
THEN
#put code here
ELSE
# do nothing
END IF
but everything I do just seems to switch the leaderboard off.
I'm currently using without IF coding.
However, I'd like to have it that if people don't use the pitboard, they have the leaderboard, and vice versa.
(If you want to have both, you'll need to change coding so that it's higher up the screen, otherwise the leaderboard will overlay on top of the pitboard - I'd suggest moving 30 or 40 up - for instance, where it has openPrivButton( "leaderboardback",1,70,30,34,12,7,16......", change this to openPrivButton("leaderboardback",1,30,30,34,12,7,16....." - adjust second number of all buttons accordingly - - 2nd last number in the line means that it will show for 7 seconds - you could change to -1 so never closes)
Anyone help?