Help: I tried to remove "_" from name. but all chat has been removed.
#7

Try this maybe? Btw aren't find and replace string format?

pawn Код:
stock strreplace(string[], find[], replace[], ignorecase = false)
{
    for(new i=0; sizeof(string); i++)
    {
        if(!strcmp(string[i], find, ignorecase))
        {
            strdel(string[i], 0, strlen(string[i]));
            strins(string[i], replace, 0, sizeof(string[i]));
        }
    }
    return string;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 3 Guest(s)