Leaderboard[kills]
#7

I could explain you how to make it,first of all,lets say you will make 15 slots,define :
pawn Код:
new SlotUsed[15];
Now,under the function that you use for ending round create textdraw ,and in it show:
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...
                     }
          }
}
Reply


Messages In This Thread
Leaderboard[kills] - by DavidBilla - 28.05.2014, 09:33
Re: Leaderboard[kills] - by DavidBilla - 28.05.2014, 17:18
Re: Leaderboard[kills] - by DavidBilla - 29.05.2014, 09:50
Re: Leaderboard[kills] - by Matess - 29.05.2014, 10:10
Re: Leaderboard[kills] - by DavidBilla - 29.05.2014, 17:15
Re: Leaderboard[kills] - by JFF - 29.05.2014, 19:52
Re: Leaderboard[kills] - by R0 - 29.05.2014, 20:09
Re: Leaderboard[kills] - by FeniX70 - 30.03.2015, 02:10
Re: Leaderboard[kills] - by SickAttack - 30.03.2015, 02:15

Forum Jump:


Users browsing this thread: 1 Guest(s)