04.01.2013, 05:17
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;
}