09.10.2010, 01:09
You have to do it like this:
OnPlayerCommandText: dcmd(register, 8, cmdtext)
BOTTOM OF SCRIPT(outside any other code): dcmd_register(playerid, params[])
EDIT: Also, add this line to the top of your script, right under your includes:
OnPlayerCommandText: dcmd(register, 8, cmdtext)
BOTTOM OF SCRIPT(outside any other code): dcmd_register(playerid, params[])
EDIT: Also, add this line to the top of your script, right under your includes:
pawn Код:
#define dcmd(%1,%2,%3) if (!strcmp((%3)[1], #%1, true, (%2)) && ((((%3)[(%2) + 1] == '\0') && (dcmd_%1(playerid, ""))) || (((%3)[(%2) + 1] == ' ') && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1