29.08.2009, 16:05
Thanks Zeex, I have a question what is the parameter format for this line?
I know it is:
Does "byplayerid" have the same effect as
and what do you mean that it doesn't matter how last 2 parameters are named? 
Might be a stupid question.
Also, does the else statement execute if either parameters are not completed, or just the first one, and does it show this message if the format is incoorect, for instance if i type /givemoney 21 hello?
Thanks.
pawn Код:
zcmd(givemoney, byplayerid, params[]) // btw it doesn't matter how last 2 parameters are named
pawn Код:
zcmd(commandname, what is this, params[]) // btw it doesn't matter how last 2 parameters are named
pawn Код:
new byplayerid; //?

Might be a stupid question.
Also, does the else statement execute if either parameters are not completed, or just the first one, and does it show this message if the format is incoorect, for instance if i type /givemoney 21 hello?
pawn Код:
else SendClientMessage(byplayerid, 0xFFFFFFFF, "Usage: /givemoney <playerid> <amount>");
