highscore_show - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Shows the highscore table with the given score value. If the score value is higher than the other score entries the player will be able to enter their name for the table entry.
Parameter | Data Type | Description |
---|---|---|
numb | integer | score value to enter into the table, -1 to simply display the highscore table |
void: This function does not return anything.
// demonstrates simply showing the highscore table
highscore_show(-1);
// demonstrates showing the highscore table and entering the current score
highscore_show(score);
NOTOC