13.06.2015, 18:15
Hey guys, i have a question.
Is there in ZCMD some feature which allows me to do this thing?
If player writes command /lol it will show him what command he wrote. For example something like this, in this case is "command" the feature..
So yeah guys, i hope you know what i mean.. for example that could be used for admins, their CMD reading and stuff, so yeah, thanks.
Is there in ZCMD some feature which allows me to do this thing?
If player writes command /lol it will show him what command he wrote. For example something like this, in this case is "command" the feature..
Код:
CMD:lol(playerid, params[]) { new string[10]; format(string, sizeof(string), "You typed: %s", command); SendClientMessage(playerid, -1, string); return 1; }