Highscore_show - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
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.
Parameters
Parameter | Data Type | Description |
---|---|---|
numb | integer | score value to enter into the table, -1 to simply display the highscore table |
Return Values
void: This function does not return anything.
Example Call
// demonstrates simply showing the highscore table
highscore_show(-1);
// demonstrates showing the highscore table and entering the current score
highscore_show(score);
NOTOC