Quote:
Originally Posted by Dabombber
Quote:
Originally Posted by Doktor
How is something like this possible in zcmd? Do i have to use CallLocalFunction?
|
pawn Код:
zcmd(longcommand, playerid, params[]) { // ... }
zcmd(shortcommand, playerid, params[]) { return zcmd_longcommand(shortcommand, playerid, params); }
Quote:
Originally Posted by Doktor
And the Compiler outputs...
|
Maybe include zcmd?
Somewhat releated, what about using
pawn Код:
#define zcmd:%1(%2,%3) \ forward zcmd_%1(%2, %3); \ public zcmd_%1(%2, %3)
instead (or as well as). That way if zcmd isn't included you get a bunch of unused function warnings which is more relevant than a differing prototype, and more importantly it doesn't ugly up the function list in notepad++ :P.
|
And what about if i want to call a Command from somewhere else? So What cann i do instead of
Код:
dcmd_callthiscommand(playerid, params);
I inlcluded zcmd. I think the problem is related because i use the commands like
Код:
zcmd(phone, playerid, params[])
instead of using it like
Код:
zcmd(phone, playerid, params)
But i need the [], as i said above, because i need to use strtok in some commands. Or is there any other way?