30.06.2014, 18:18
If you use ZCMD, then you shouldn't use other arguments as kamiliuxliuxliux said because the include calls the cmd_... with 2 arguments only (playerid and params).
Anyways, the problem is with the #define pattern and not at the line is used. For example, doing:
will give that warning because you cannot use space at the first part. The correct would be:
Anyways, the problem is with the #define pattern and not at the line is used. For example, doing:
pawn Код:
#define WorkOutPercentage(%0, %1) ... SOMETHING HERE ...
pawn Код:
#define WorkOutPercentage(%0,%1) ... SOMETHING HERE ...