04.02.2012, 11:19
Oh I see.
But you need to return the rank.
But you need to return the rank.
pawn Код:
stock AdminRank( playerid )
{
new
rank[ 32 ];
switch( PlayerInfo[ playerid ][ Admin ] )
{
case 0: rank = "Normal";
case 1: rank = "Helper";
// continue..
}
return rank;
}