[HELP] Remove the underscore in players names
#2

pawn Код:
stock RemoveUnderLine(name[MAX_PLAYER_NAME])
{
  for(new i; i < MAX_PLAYER_NAME; i++)
  {
    if(name[i] == '_') name[i] = ' ';
  }
  return name;
}
Works as:
pawn Код:
playername = RemoveUnderLine(playername);
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)