01.07.2011, 01:44
Off Topic - Zcmd is fairly easy to get the hang of.
and if that isn't good enough, why not try y_commands
pawn Код:
//dcmd command
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(command,7,commandtext);
return 1;
}
dcmd_command(playerid, params[])
{
#pragma unused params
//do stuff
return 1;
}
pawn Код:
//zcmd command
CMD:command(playerid, params[])
{
//do stuff
return 1;
}
pawn Код:
YCMD:command(playerid, params[])
{
//do stuff
return 1;
}