01.03.2015, 20:34
Hold on a second. That is not the correct strcmp syntax. Do it like this:
This is the wiki page: https://sampwiki.blast.hk/wiki/Strcmp
pawn Код:
if(!strcmp(baseballBat, newAnim, true)) //true means that we don't care about the capital letters (for example, test is identical to TeSt)
{
//they are identical
}
else
{
//they are not identical, at least one character is different
}

