17.02.2012, 21:21
Little note for you again, maybe it's not too late to earn my rep! 
Look, there is a difference:
This you should not use, this is the form of a command you would script! (Read this again, it was also helpful for me at first: https://sampwiki.blast.hk/wiki/Using_strcmp%28%29 )
Here you don't write it in a form of command, you are comparing the string (strcmp) with the params and are checking it, if it's true! Therefore, you can use such a form!

Look, there is a difference:
pawn Код:
if(!strcmp(cmdtext, "/me", true, 3))
pawn Код:
if(strcmp(params, "General", true) == 0)
