#================# #Drifting options # #================# #### ========================================================= #### #### Small Drift Meter placed to right of top centred mirror (if mirror enabled) #### #### ========================================================= #### Event OnDriftScore() openPrivButton( "sdmback",131,10,22,14,4,-1,32," " ); openPrivButton( "sdmtext",132,11,20,4,4,-1,16,"^3DRIFT METER" ); IF( $AngleVelocity < 0 ) THEN $Angle_drift=($AngleVelocity)*(-1); openPrivButton( "sdmscores",132,15,20,4,4,-1,16,"Scores: ^2" . $DriftScore . " ^7" . $LastDriftScore ); openPrivButton( "sdmangle",132,19,20,4,4,-1,16,"Drift Angle: ^7" . $Angle_drift . "^2 =>" ); ELSE openPrivButton( "sdmscores",132,15,20,4,4,-1,16,"Scores: ^7" . $DriftScore . " ^3" . $LastDriftScore ); openPrivButton( "sdmangle",132,19,20,4,4,-1,16,"Drift Angle: ^2<= ^7" . $AngleVelocity . " " ); ENDIF EndEvent