mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[9656] Implement '.list talents' command.
Command show really know by selected player talent ranks, including bugged cases like 2 rank same talent known and etc. Also command claculated count of talents and total used talent points cost of known talent ranks. Can be helpful in bug debuging and cheating cases.
This commit is contained in:
parent
db22a0a9fb
commit
034da8f6d4
10 changed files with 114 additions and 47 deletions
|
|
@ -266,10 +266,11 @@ ChatCommand * ChatHandler::getCommandTable()
|
|||
|
||||
static ChatCommand listCommandTable[] =
|
||||
{
|
||||
{ "auras", SEC_ADMINISTRATOR, false, &ChatHandler::HandleListAurasCommand, "", NULL },
|
||||
{ "creature", SEC_ADMINISTRATOR, true, &ChatHandler::HandleListCreatureCommand, "", NULL },
|
||||
{ "item", SEC_ADMINISTRATOR, true, &ChatHandler::HandleListItemCommand, "", NULL },
|
||||
{ "object", SEC_ADMINISTRATOR, true, &ChatHandler::HandleListObjectCommand, "", NULL },
|
||||
{ "auras", SEC_ADMINISTRATOR, false, &ChatHandler::HandleListAurasCommand, "", NULL },
|
||||
{ "talents", SEC_ADMINISTRATOR, false, &ChatHandler::HandleListTalentsCommand, "", NULL },
|
||||
{ NULL, 0, false, NULL, "", NULL }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue