Quote:
Originally Posted by Smirks
It looks like it's not subtracting the 118 like it says in the instructions.
|
(excuse my english)
In Golf, you win with the LOWER Score,
(enter the ball with the fewest stokes)
But i had to change the Score Calculation because
v3 Arcade display the HIGH score...
so i created a variable:
if ( Your_Final_Score < 118) {
arcade_score = 118 - Your_Final_Score ; }
else { arcade_score = 0 ; }
(this way you Can't have a negative score,
and it reverses the score system)
You start with 118 as your arcade Score,
and you start "decreasing" your score.
i read the posts and everything seems to be running fine
the BEST Golf_Score you can have is 18.
Then,... the Best Arcade_Score will be:
118 - 18 = 100
if you have a bad Golf_score, lets say... 90 strokes
your arcade score will be:
118 - 90 = 38 (a low arcade score)
if you have a terrible Golf_score, lets say... 190
the game submits a "0" arcade_score (not a negative score)