diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-23 15:19:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-23 15:19:14 +0300 |
commit | e83760a9b74131d7db25949b8b1bd69b8cb4c81d (patch) | |
tree | f48e6bae67959f836e97d2b6a8e39f78bf51eaa6 | |
parent | e07a6a1cb8cd414f0b0a8de21903cd621582a906 (diff) | |
download | plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.tar.gz plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.tar.bz2 plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.tar.xz plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.zip |
Add chat command for rename own pet (hercules only)
New chat command: /setpetname NAME
-rw-r--r-- | src/actions/commands.cpp | 10 | ||||
-rw-r--r-- | src/actions/commands.h | 1 | ||||
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 11 |
4 files changed, 22 insertions, 1 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 254f3868c..7696c3db1 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -690,4 +690,14 @@ impHandler(serverUnIgnoreWhisper) return true; } +impHandler(setPetName) +{ + const std::string args = event.args; + if (args.empty()) + return false; + + petHandler->setName(args); + return true; +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index 333afc9eb..5dce9ac87 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -73,6 +73,7 @@ namespace Actions decHandler(debugSpawn); decHandler(serverIgnoreWhisper); decHandler(serverUnIgnoreWhisper); + decHandler(setPetName); } // namespace Actions #undef decHandler diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 422a141ae..74c3a90f8 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -483,6 +483,7 @@ namespace InputAction MERCENARY_FIRE, TARGET_MERCENARY, TARGET_PET, + PET_SET_NAME, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index edd9620be..9b0a6f363 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4088,7 +4088,16 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME | InputCondition::NOTARGET, "targetpet", - false} + false}, + {"keyPetSetName", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::setPetName, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "setpetname|petsetname", + false}, }; #endif // INPUT_INPUTACTIONMAP_H |