note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetPlayerScore
Description
This function returns a player's score as it was set using SetPlayerScore
Name | Description |
---|---|
playerid | The player to get the score of. |
Returns
The player's score.
Examples
public OnPlayerCommandText(playerid,text[])
{
if (!strcmp(cmdtext, "/score", true))
{
new string[32];
format(string, sizeof(string), "Your score: %i", GetPlayerScore(playerid));
SendClientMessage(playerid, COLOR_ORANGE, string);
return 1;
}
return 0;
}
Related Functions
- SetPlayerScore: Set the score of a player.
- GetPlayerPing: Get the ping of a player.