highscore_add - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Adds the player with the given name and given score to the highscore table.
Parameter | Data Type | Description |
---|---|---|
name | string | the name of the player |
numb | integer | player score value |
void: This function does not return anything.
// demonstrates adding a player to the highscore table
highscore_add("Charlie", 500);
NOTOC