diff options
author | CraftedRO <CraftedRO@users.noreply.github.com> | 2021-10-01 18:20:12 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-03-19 22:41:15 +0100 |
commit | 1a236bdecdf4464c774eb8398bb94591e23fb234 (patch) | |
tree | 27ad792b1bffc074bac0bfd19a3aa1c6245d69c5 | |
parent | 60c13ee364ab213c152022ba86d9d1239d8daf74 (diff) |
DB/Commands: Add missing group commands description
Closes #26963
(cherry picked from commit 0b76bb3519d427d8509257d48854c6ad941065e4)
-rw-r--r-- | sql/updates/world/master/2022_03_19_04_world_2021_10_01_04_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_19_04_world_2021_10_01_04_world.sql b/sql/updates/world/master/2022_03_19_04_world_2021_10_01_04_world.sql new file mode 100644 index 00000000000..49929bb8f1c --- /dev/null +++ b/sql/updates/world/master/2022_03_19_04_world_2021_10_01_04_world.sql @@ -0,0 +1,6 @@ +-- +DELETE FROM `command` WHERE `name` IN ('group repair','group level','group revive'); +INSERT INTO `command` (`name`,`help`) VALUES +('group repair', 'Syntax: .group repair [$charactername] Repair the given character and his group. Repair only online group characters but original selected group member can be offline. If no character is selected and name not provided, it will repair yourself.'), +('group level', 'Syntax: .group level [$charactername] Set the level of the given character and his group to #numberoflevels (only positive values 1+). Modify only online group characters level but original selected group member can be offline. All stats and dependent values are not recalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost. If no character is selected and name not provided, it will modify your level.'), +('group revive', 'Syntax: .group revive [$charactername] Revive the given character and his group. Revive only online group characters but original selected group member can be offline. If no character is selected and name not provided, it will revive yourself.'); |