29.05.2014, 20:09
I could explain you how to make it,first of all,lets say you will make 15 slots,define :
Now,under the function that you use for ending round create textdraw ,and in it show:
pawn Код:
new SlotUsed[15];
pawn Код:
for(new i = 0; i < 15; i++) //i will make example for the first player with most kills
{
for(new p = 0; p < MAX_PLAYERS; p++)
{
new mostkills = 0;
if(Kills[p] > mostkills)
{
mostkills = Kills[p];
SlotUsed[0] = 1;
//Now get p's name and set it as the textdraw's string,do the same for the other slots...
}
}
}