16.12.2011, 11:00
@Jack Leslie, I did that, edited everything to my ranks and all, now it says Deputy Sheriff When Im rank six?
PHP код:
stock SDRank(playerid)
{
new string[126];
switch(PlayerInfo[playerid][Member]) // change to your rank variable
{
case 5: string = "Sheriff";
case 4: string = "Under Sheriff";
case 3: string = "Lieutenant";
case 2: string = "Sergeant";
case 1: string = "Deputy Sheriff Bonus";
default: string = "Deputy Sheriff";
}
return string;
}