18.03.2012, 02:44
how to remove '_' from their names example my name is
it would be something like this when use in chat
i'm trying to make something like this
but this stock function will not remove the '_'
Код:
John_Smith
Код:
John Smith
pawn Код:
stock pname(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
return name;
}