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