23.10.2013, 19:13
Um sistema que monstra as pessoas que mais matou ?
new scoris[MAX_PLAYERS];
for(new i; i != MAX_PLAYERS; ++i)scoris[i] = GetPlayerScore(i);
BubbleSort(scoris, sizeof(scoris));
new str[100], n[24];
for(new i; i != MAX_PLAYERS; ++i)
{
GetPlayerName(i, n, 24);
format(str, sizeof(str),"NЄ%d Nome: %s Pontos:",i+1, n, scoris[i]);
SendClientMessage(playerid, -1, str);
}