Highscore_show_ext - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Shows the highscore table with the given score value and given dialog options which are also achievable through the other highscore functions. 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 |
back | integer | background image to use |
border | boolean | whether or not to show the border |
col1 | integer | color for the new score entry |
col2 | integer | color for the other score entries |
name | string | name of the font to use |
size | integer | size of the font |
Return Values
void: This function does not return anything.
Example Call
// demonstrates showing the highscore table
highscore_show_ext(score, 0, false, c_yellow, c_white, "Arial", 12);
NOTOC