Returns the n'th score on the given highscorelist. 0(zero) will be returned when exceeding server_highscore_count.
Example
//Shows first score on highscorelist '1' var score_to_beat; score_to_beat = gms_highscore_score(1, 0)//1e plek show_message("Score to beat: "+score_to_beat);
Is there any way to sync the highscore list (after starting up your game)? I have these mini games in my game that are single player (I just am utilizing the high score list for an online leaderboard), so I need these to update right after a name is entered (using gms_highscore_add_guest(...) ). I need the highscore list for the game to update without needing to restart the executable. If it helps at all, I am using gms_highscore_name(..) and gms_highscore_score(...) to get the data.