GetPlayerScore funkció: Lekérjük egy adot játékos pontszámát.
Paraméterek: (playerid)
playerid Az adott játékos azonosítója.
Visszatérés: A játékos pontszáma.
Példa a helyes használatra: public OnPlayerCommandText(playerid,text[])
{
if(!strcmp(cmdtext,\"/pontok\",true))
{
new string[128];
format(string, sizeof(string), \"Pontok: %i\",GetPlayerScore(playerid));
SendClientMessage(playerid, COLOR_ORANGE, string);
return 1;
}
return 0;
}