18.01.2013, 04:40
well here is the method i created first we get the palyer name, then we check each player name and foreach player name that has "_" it will be seend as " ".
for example
for example
pawn Код:
new string[32];
format(string, sizeof(string), "%s", RPNAME(playerid));
SendClientMessage(playerid, -1, string);
//in a command via zcmd ...
CMD:namecheck(playerid, params[])
{
new string[32];
format(string, sizeof(string), "%s", RPNAME(playerid));
SendClientMessage(playerid, -1, string);
return 1;
}