27.02.2012, 21:36
Hello guys. I have provided a picture showing the problem.
Basically I am trying to show the player's rank to show as a textdraw. Ex: Private
But instead it shows a number.
Picture:

Code:
Basically I am trying to show the player's rank to show as a textdraw. Ex: Private
But instead it shows a number.
Picture:

Code:
pawn Код:
//On Top
new rank[MAX_PLAYERS][12];
//Onplayerupdate
new string[ 128 ];
if(PlayerInfo[playerid][pKills] < 0) rank[playerid]="NONE";
else if(PlayerInfo[playerid][pKills] < 50) rank[playerid]="Private";
else if(PlayerInfo[playerid][pKills] < 300) rank[playerid]="Sergeant";
else if(PlayerInfo[playerid][pKills] < 500) rank[playerid]="Major";
else if(PlayerInfo[playerid][pKills] < 800) rank[playerid]="Lieuteant 1";
else if(PlayerInfo[playerid][pKills] < 1200) rank[playerid]="Lieuteant 2";
else if(PlayerInfo[playerid][pKills] < 1500) rank[playerid]="Captain";
else if(PlayerInfo[playerid][pKills] < 3000) rank[playerid]="General";
format( string, sizeof string, "%d", rank[ playerid ] );
TextDrawSetString( Textdraw0, string );