02.11.2009, 17:41
With strcmp you can easily make 2 commands that do the same thing like this:
How do you do this with zcmd please?
pawn Код:
if (strcmp("/mycommand", cmdtext, true, 10) == 0 || strcmp("/mycmd", cmdtext, true, 10) == 0)
{
// Do something here
return 1;
}