25.03.2016, 05:49
Hi,
How to make (write) command that i could get params when player write 2 slashes not 1 because now in zcmd if i do like this:
i will have to write this command like this: /givemoney
But if i want to make //givemoney
It give my syntax errors
How to make (write) command that i could get params when player write 2 slashes not 1 because now in zcmd if i do like this:
Код:
CMD:givemoney(playerid, params[]) { return 1; }
But if i want to make //givemoney
Код:
CMD:/givemoney(playerid, params[]) { return 1; }