How to remove "_" from RP Names
#4

You can create a simple stock function, here's an example:

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


Messages In This Thread
How to remove "_" from RP Names - by Mr.Black - 16.07.2011, 22:26
Re: How to remove "_" from RP Names - by OUL - 16.07.2011, 22:28
Re: How to remove "_" from RP Names - by SWEMike - 16.07.2011, 22:30
Re: How to remove "_" from RP Names - by Kush - 16.07.2011, 22:44
Re: How to remove "_" from RP Names - by Mr.Black - 17.07.2011, 06:12
Re: How to remove "_" from RP Names - by Flyfishes - 17.07.2011, 06:18

Forum Jump:


Users browsing this thread: 3 Guest(s)