05.01.2010, 00:37
The parameters are different, but the system is based on zcmd. You can use this:
pawn Код:
IRCCMD:command1(botid, channel[], user[], host[], params[])
{
return irccmd_command2(botid, channel, user, host, params);
}
IRCCMD:command2(botid, channel[], user[], host[], params[])
{
// The command's code goes here
return 1;
}

