14.01.2010, 14:29
Alright, I'll restate myself :P
As many folks are saying, ZCMD is much faster then DCMD.
At the moment, I'am using DCMD. In the public
I have stated some checks when a player enters that command. Like if the player is admin or not, it'll return the command or a negative message,
if I would switch to ZCMD, is there any possibility to do something similair to the public
as stated at the top.
As CalgonX said these publics to use:
How will I use them?
As many folks are saying, ZCMD is much faster then DCMD.
At the moment, I'am using DCMD. In the public
Код:
OnPlayerCommandText
if I would switch to ZCMD, is there any possibility to do something similair to the public
Код:
OnPlayerCommandText
As CalgonX said these publics to use:
pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
return 1;
}
public OnPlayerCommandReceived(playerid, cmdtext[])
{
return 1;
}