LFSLapper Development Forum Custom Code Block, it would be nice if this was implemented without having to add the color manually. Victor?
<?php
SWITCH( GetCurrentPlayerVar("FinishedPos") ) # you can use any var here
CASE 1: # 1 is the value of GetCurrentPlayerVar("FinishedPos")
do something
BREAK;
CASE 2:
do something
BREAK;
CASE 3:
do something
BREAK;
DEFAULT: # If no value match then do this
do something else
BREAK;
ENDSWITCH
?>