highscore_value

Returns the score value stored at the given place in the highscore table.

Syntax:

highscore_value(place);


Argument Description
place The place on the table (1-10).


Returns: N/A


Description

With this function you can retrieve the score value that has been stored in the high score list at the given position. If no score has been entered, the function will return 0.


Example:

var i;
i = 10;
repeat(10)
   {
   scr[i] = highscore_value(i);
   i -= 1;
   }

The above code will loop through the high score list and store all the scores in an array.


Back: High Scores
Next: highscore_clear
© Copyright YoYo Games Ltd. 2018 All Rights Reserved