mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[7708] Continue chat command function declarations sorting.
This commit is contained in:
parent
38cf432133
commit
226bdca199
3 changed files with 17 additions and 16 deletions
|
|
@ -181,11 +181,11 @@ ChatCommand * ChatHandler::getCommandTable()
|
||||||
|
|
||||||
static ChatCommand goCommandTable[] =
|
static ChatCommand goCommandTable[] =
|
||||||
{
|
{
|
||||||
{ "grid", SEC_MODERATOR, false, &ChatHandler::HandleGoGridCommand, "", NULL },
|
|
||||||
{ "creature", SEC_MODERATOR, false, &ChatHandler::HandleGoCreatureCommand, "", NULL },
|
{ "creature", SEC_MODERATOR, false, &ChatHandler::HandleGoCreatureCommand, "", NULL },
|
||||||
|
{ "graveyard", SEC_MODERATOR, false, &ChatHandler::HandleGoGraveyardCommand, "", NULL },
|
||||||
|
{ "grid", SEC_MODERATOR, false, &ChatHandler::HandleGoGridCommand, "", NULL },
|
||||||
{ "object", SEC_MODERATOR, false, &ChatHandler::HandleGoObjectCommand, "", NULL },
|
{ "object", SEC_MODERATOR, false, &ChatHandler::HandleGoObjectCommand, "", NULL },
|
||||||
{ "trigger", SEC_MODERATOR, false, &ChatHandler::HandleGoTriggerCommand, "", NULL },
|
{ "trigger", SEC_MODERATOR, false, &ChatHandler::HandleGoTriggerCommand, "", NULL },
|
||||||
{ "graveyard", SEC_MODERATOR, false, &ChatHandler::HandleGoGraveyardCommand, "", NULL },
|
|
||||||
{ "zonexy", SEC_MODERATOR, false, &ChatHandler::HandleGoZoneXYCommand, "", NULL },
|
{ "zonexy", SEC_MODERATOR, false, &ChatHandler::HandleGoZoneXYCommand, "", NULL },
|
||||||
{ "xy", SEC_MODERATOR, false, &ChatHandler::HandleGoXYCommand, "", NULL },
|
{ "xy", SEC_MODERATOR, false, &ChatHandler::HandleGoXYCommand, "", NULL },
|
||||||
{ "xyz", SEC_MODERATOR, false, &ChatHandler::HandleGoXYZCommand, "", NULL },
|
{ "xyz", SEC_MODERATOR, false, &ChatHandler::HandleGoXYZCommand, "", NULL },
|
||||||
|
|
|
||||||
|
|
@ -167,6 +167,16 @@ class ChatHandler
|
||||||
bool HandleGMListIngameCommand(const char* args);
|
bool HandleGMListIngameCommand(const char* args);
|
||||||
bool HandleGMVisibleCommand(const char* args);
|
bool HandleGMVisibleCommand(const char* args);
|
||||||
|
|
||||||
|
bool HandleGoCommand(const char* args);
|
||||||
|
bool HandleGoCreatureCommand(const char* args);
|
||||||
|
bool HandleGoGraveyardCommand(const char* args);
|
||||||
|
bool HandleGoGridCommand(const char* args);
|
||||||
|
bool HandleGoObjectCommand(const char* args);
|
||||||
|
bool HandleGoTriggerCommand(const char* args);
|
||||||
|
bool HandleGoXYCommand(const char* args);
|
||||||
|
bool HandleGoXYZCommand(const char* args);
|
||||||
|
bool HandleGoZoneXYCommand(const char* args);
|
||||||
|
|
||||||
bool HandleGuildCreateCommand(const char* args);
|
bool HandleGuildCreateCommand(const char* args);
|
||||||
bool HandleGuildInviteCommand(const char* args);
|
bool HandleGuildInviteCommand(const char* args);
|
||||||
bool HandleGuildUninviteCommand(const char* args);
|
bool HandleGuildUninviteCommand(const char* args);
|
||||||
|
|
@ -242,6 +252,7 @@ class ChatHandler
|
||||||
bool HandleNpcAddCommand(const char* args);
|
bool HandleNpcAddCommand(const char* args);
|
||||||
bool HandleNpcAddMoveCommand(const char* args);
|
bool HandleNpcAddMoveCommand(const char* args);
|
||||||
bool HandleNpcAddVendorItemCommand(const char* args);
|
bool HandleNpcAddVendorItemCommand(const char* args);
|
||||||
|
bool HandleNpcAllowMovementCommand(const char* args);
|
||||||
bool HandleNpcChangeEntryCommand(const char *args);
|
bool HandleNpcChangeEntryCommand(const char *args);
|
||||||
bool HandleNpcChangeLevelCommand(const char* args);
|
bool HandleNpcChangeLevelCommand(const char* args);
|
||||||
bool HandleNpcDeleteCommand(const char* args);
|
bool HandleNpcDeleteCommand(const char* args);
|
||||||
|
|
@ -271,6 +282,9 @@ class ChatHandler
|
||||||
bool HandleNpcSubNameCommand(const char* args);
|
bool HandleNpcSubNameCommand(const char* args);
|
||||||
//----------------------------------------------------------
|
//----------------------------------------------------------
|
||||||
|
|
||||||
|
bool HandlePDumpLoadCommand(const char *args);
|
||||||
|
bool HandlePDumpWriteCommand(const char *args);
|
||||||
|
|
||||||
bool HandleQuestAdd(const char * args);
|
bool HandleQuestAdd(const char * args);
|
||||||
bool HandleQuestRemove(const char * args);
|
bool HandleQuestRemove(const char * args);
|
||||||
bool HandleQuestComplete(const char * args);
|
bool HandleQuestComplete(const char * args);
|
||||||
|
|
@ -415,22 +429,11 @@ class ChatHandler
|
||||||
bool HandleGUIDCommand(const char* args);
|
bool HandleGUIDCommand(const char* args);
|
||||||
bool HandleItemMoveCommand(const char* args);
|
bool HandleItemMoveCommand(const char* args);
|
||||||
bool HandleDeMorphCommand(const char* args);
|
bool HandleDeMorphCommand(const char* args);
|
||||||
bool HandleGoCreatureCommand(const char* args);
|
|
||||||
bool HandleGoObjectCommand(const char* args);
|
|
||||||
bool HandleGoTriggerCommand(const char* args);
|
|
||||||
bool HandleGoGraveyardCommand(const char* args);
|
|
||||||
bool HandlePInfoCommand(const char* args);
|
bool HandlePInfoCommand(const char* args);
|
||||||
bool HandleMuteCommand(const char* args);
|
bool HandleMuteCommand(const char* args);
|
||||||
bool HandleUnmuteCommand(const char* args);
|
bool HandleUnmuteCommand(const char* args);
|
||||||
bool HandleMovegensCommand(const char* args);
|
bool HandleMovegensCommand(const char* args);
|
||||||
|
|
||||||
bool HandleGoXYCommand(const char* args);
|
|
||||||
bool HandleGoXYZCommand(const char* args);
|
|
||||||
bool HandleGoZoneXYCommand(const char* args);
|
|
||||||
bool HandleGoGridCommand(const char* args);
|
|
||||||
bool HandleNpcAllowMovementCommand(const char* args);
|
|
||||||
bool HandleGoCommand(const char* args);
|
|
||||||
|
|
||||||
bool HandleCooldownCommand(const char* args);
|
bool HandleCooldownCommand(const char* args);
|
||||||
bool HandleUnLearnCommand(const char* args);
|
bool HandleUnLearnCommand(const char* args);
|
||||||
bool HandleGetDistanceCommand(const char* args);
|
bool HandleGetDistanceCommand(const char* args);
|
||||||
|
|
@ -460,8 +463,6 @@ class ChatHandler
|
||||||
bool HandleMaxSkillCommand(const char* args);
|
bool HandleMaxSkillCommand(const char* args);
|
||||||
bool HandleSetSkillCommand(const char* args);
|
bool HandleSetSkillCommand(const char* args);
|
||||||
bool HandleRespawnCommand(const char* args);
|
bool HandleRespawnCommand(const char* args);
|
||||||
bool HandlePDumpLoadCommand(const char *args);
|
|
||||||
bool HandlePDumpWriteCommand(const char *args);
|
|
||||||
bool HandleComeToMeCommand(const char *args);
|
bool HandleComeToMeCommand(const char *args);
|
||||||
bool HandleCombatStopCommand(const char *args);
|
bool HandleCombatStopCommand(const char *args);
|
||||||
bool HandleFlushArenaPointsCommand(const char *args);
|
bool HandleFlushArenaPointsCommand(const char *args);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7707"
|
#define REVISION_NR "7708"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue