highscore_add


描述

With this function you can add a name and a score to the internal global high score list. There is no need to check the value to see if it is high enough to enter into the score list as GameMaker Studio 2 will only store those values that are greater than the tenth position stored.


语法:

highscore_add(str, numb);

参数 描述
str The string (name) to attribute the score to
numb The number (score) to add.


返回:

N/A(无返回值)


例如:

if lives = 0
    {
    highscore_add(global.Name, score);
    score = 0;
    room_goto(rm_MainMenu);
    }

The above code will check the lives and if they are set to 0, it will add the current score and the string held in the global variable "Name" into the high score list, before finally setting the score to 0 and sending the player to the room indexed in "rm_MainMenu".