GetPlayerScore PT
From SA-MP Wiki
Description:
Esta função retorna o Score/Pontuação do jogador, alterada utilizando SetPlayerScore
(playerid)
playerid | ID do jogador. |
Return Values:
Score/Pontuação do jogador.
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; }
Funções Relacionadas
As seguintes funções podem ser úteis, pois estão de alguma forma, relacionadas a esta função.
- SetPlayerScore: Set the score of a player.
- GetPlayerPing: Get the ping of a player.