I am trying to ask the user for a name to put into my highscore table.
I do not want to use get_string_async because then it adds a the name and score before the user has even given a name, however get_string does not work because it is deprecated.
name = get_string("Game Over. What is your name?","Player");
highscore_add(name,score);
global.highscore == 1; //tells draw event to draw highscore table.
Is there an alternative to get_string that waits for input before continuing through the code?