25.12.2014, 13:23
I don't really know how to do that though.
I have a code to remove the underscore, could it be worked out from that?
I have a code to remove the underscore, could it be worked out from that?
pawn Код:
stock RemoveUnderScore(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
for(new i = 0; i < MAX_PLAYER_NAME; i++)
{
if(name[i] == '_') name[i] = ' ';
}
return name;
}