highscore_name


描述

With this function you can retrieve the name string that has been stored in the high score list at the given position. If no name has been entered, the string "Unknown" will be returned.


语法:

highscore_name(place);

参数 描述
place The place on the table (1-10).


返回:

String(字符串)


例如:

var i = 9;
repeat(10)
    {
    name[i] = highscore_name(i + 1);
    i -= 1;
    }

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