16.12.2011, 11:04
Quote:
@Jack Leslie, I did that, edited everything to my ranks and all, now it says Deputy Sheriff When Im rank six?
PHP код:
|
pawn Код:
stock SDRank(playerid)
{
new string[126];
switch(PlayerInfo[playerid][Member]) // change to your rank variable
{
case 6: string = "Sheriff";
case 5: string = "Deputy Sheriff";
case 4: string = "Under Sheriff";
case 3: string = "Lieutenant";
case 2: string = "Sergeant";
case 1: string = "Deputy Sheriff Bonus";
default: string = // If there is no case for the rank, or the rank is 0, it will use this;
}
return string;
}