20.07.2015, 15:27
Ex: I have this command:
And this:
They are same...
When i use zcmd, i write second command like this:
How to do it with y_commands?
This is just ex, but i need it for more commands to make easier game for players...
Код:
YCMD:handsup(playerid, params[],help) { SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP); return 1; }
Код:
YCMD:handsupbaybe(playerid, params[],help) { SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP); return 1; }
When i use zcmd, i write second command like this:
Код:
CMD:handsupbaybe(playerid, params[]) return cmd_handsup(playerid,params[]);
This is just ex, but i need it for more commands to make easier game for players...