How to remove the _ in Firstname_Lastname
#2

pawn Код:
stock GetPlayerRPName( playerid, name[ ], len )
{
        GetPlayerName( playerid, name, len );
        for ( new i = 0; i < len; i++ )
        {
            if ( name[ i ] == '_' )
                name[ i ] = ' ';
        }
}
Use instead of GetPlayerName.
Reply


Messages In This Thread
How to remove the _ in Firstname_Lastname - by Jochemd - 19.07.2010, 16:13
Re: How to remove the _ in Firstname_Lastname - by kLx - 19.07.2010, 16:27
Re: How to remove the _ in Firstname_Lastname - by ikey07 - 19.07.2010, 16:28
Re: How to remove the _ in Firstname_Lastname - by Jochemd - 19.07.2010, 16:40
Re: How to remove the _ in Firstname_Lastname - by ikey07 - 19.07.2010, 17:16

Forum Jump:


Users browsing this thread: 1 Guest(s)