1 2 3 4 5 6 7 8
|
static ChatCommand accountCommandTable[] =
{
{ "level", '1,2,v', &ChatHandler::HandleAccountLevelCommand, "Sets gm level on account. Pass it username and 0,1,2,3,az, etc.", NULL, 0, 0, 0 },
{ "mute", '1,2,v', &ChatHandler::HandleAccountMuteCommand, "Mutes account for <timeperiod>.", NULL, 0, 0, 0 },
{ "unmute", '1,2,v', &ChatHandler::HandleAccountUnmuteCommand, "Unmutes account <x>", NULL, 0, 0, 0 },
{ NULL, 'h', NULL, "", NULL, 0, 0, 0 }
};
dupe_command_table(accountCommandTable, _accountCommandTable);
|