01.04.2013, 14:48 
	
	
	Quote:
| 
 what is NormalName[playerid] = GetPlayerNameEx(playerid); 
GetPlayerNameex?  | 
pawn Код:
GetPlayerNameEx(playerid) {
new
sz_playerName[MAX_PLAYER_NAME],
i_pos;
GetPlayerName(playerid, sz_playerName, MAX_PLAYER_NAME);
while ((i_pos = strfind(sz_playerName, "_", false, i_pos)) != -1) sz_playerName[i_pos] = ' ';
return sz_playerName;
}


