#1

undefined symbol "isStringSame"
Reply
#2

Means isStringSame is not defined anywhere in your script, but it's being used for something.
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)