How to remove the "_" from the names?
#9

All that is provided above - shit.
The only way you can do it nomally is:
pawn Код:
splitname(playerid, name[21])
{
    GetPlayerName(playerid, name, 21);
    for(new i; i < 21; i++)
    {
        if(name[i] == '_')
        {
           name[i] = 32;
        }
    }
    return true;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)