GetPlayerScore

GetPlayerScore

Description:
Function GetPlayerScore returns a player's score as it was set using SetPlayerScore.


Parameters:
(playerid)
int playerid The player to get the score of.


Return Values:
The player's score.


Examples:
public OnPlayerCommandText(playerid,text[])
{
    if(!strcmp(cmdtext,"/score",true))
    {
        new string[128];
        format(string, sizeof(string), "Score: %i",GetPlayerScore(playerid));
        SendClientMessage(playerid, COLOR_ORANGE, string);
        return 1;
    }
    return 0;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.