Is this possible?
#1

I need some "rank" system in my server and some /stats[id] and then show kills,deaths,money,score and play time??
Ps:i use zcmd and sscanf..+If someone can help me i give rep...
Reply
#2

Quote:
Originally Posted by Wickeed
Посмотреть сообщение
I need some "rank" system in my server and some /stats[id] and then show kills,deaths,money,score and play time??
Ps:i use zcmd and sscanf..+If someone can help me i give rep...
Okay I guess it's possible to give a player a specific rank on based of kills.

Like this maybe?

pawn Код:
COMMAND:stats(playerid, params[])
{
    if(Kills < 100)
    {
         SendClienMessage(playerid, -1, "Your rank is: Noob"); // if the kills are less then 100 it shows you are noob
    }
    if(Kills > 100)
    {
        SendClientMessage(playerid, -1, "Your rank is: Super Noob");// iff the kills are more then 100 it shows you are super noob
     }

    return 1;
}
this is just an example, you can use this in your stats command and the "Kills" can be edited by your own variable. I hope this helps

-FalconX
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)