18.06.2013, 16:47
all things are possible with zcmd , dcmd but you need to do some changes in starting of the code . like if you are making a /help cmd then you will need to make it in zcmd like that:
pawn Код:
Zcmd Code:
CMD:help(playerid, params)
{
your code..
return 1;
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
dcmd(help,4,cmdtext);
dcmd_help(playerid, params)
{
#pragma unused params (if you are not using params)
your code..
return 1;
}