17.03.2012, 20:21
Quote:
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... |
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;
}
-FalconX