Quote:
| 
					Originally Posted by Jochemd  
pawn Код: stock GetPlayerRPName( playerid, name[ ], len ){
 GetPlayerName( playerid, name, len );
 for(new i = 0; i < len; i++ )
 {
 if ( name[ i ] == '_' )
 name[ i ] = ' ';
 }
 }
 
Better use this in stead of the normal GetPlayerName, and voilla | 
 I'm lost, I don't how to add it in the correct way and how to use it later...