How to remove the "_" from all the server messages
#3

Quote:
Originally Posted by Matnix
Посмотреть сообщение
try :

pawn Код:
stock space (string[], find, space)
{
    for(new i=0; string[i]; i++)
    {
        if(string[i] == find)
        {
            string[i] = space;
        }
    }
}

// on player text
new name[24];
GetPlayerName(playerid, name, sizeof(name));
space(name, '_', ' ');
However I have to do everything manually!
Reply


Messages In This Thread
How to remove the "_" from all the server messages - by alanhutch - 24.07.2013, 21:19
Re : How to remove the "_" from all the server messages - by Matnix - 24.07.2013, 21:26
Re: Re : How to remove the "_" from all the server messages - by alanhutch - 24.07.2013, 21:28
Re: How to remove the "_" from all the server messages - by Boolean - 24.07.2013, 21:45
Re: How to remove the "_" from all the server messages - by alanhutch - 24.07.2013, 21:57
Re: How to remove the "_" from all the server messages - by alanhutch - 24.07.2013, 22:00

Forum Jump:


Users browsing this thread: 2 Guest(s)