01.04.2013, 03:22
If you use ZCMD
Use
[pawn] and [/pawn] tags next time.
Another example, this will redirect /me command with the params as inputtext
pawn Код:
if (listitem == 0) {
// Redirect them to CMD:health
cmd_health(playerid, "hello"); // this will send "/health hello", don't worry, it'll work
return true;
}
[pawn] and [/pawn] tags next time.

Another example, this will redirect /me command with the params as inputtext
pawn Код:
if (response) return cmd_me(playerid, inputtext);