Error
#3

Place this in the stock area of your script (Closest to the bottom, below the main functions.)
pawn Код:
stock isStringSame(const string1[], const string2[], len)
{
    for(new i = 0; i < len; i++)
        if(string1[i]!=string2[i])
            return 0;
        if(string1[i] == 0 || string1[i] == '\n' || string1[i]==string2[i])
        return 1;
    }
    return 1;
}
Reply


Messages In This Thread
Error - by pawnoderek - 04.01.2013, 03:35
Re: Error - by Lynn - 04.01.2013, 04:00
Re: Error - by InActtive™ - 04.01.2013, 05:17

Forum Jump:


Users browsing this thread: 1 Guest(s)