aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraftedRO <CraftedRO@users.noreply.github.com>2021-10-01 18:20:12 +0300
committeroffl <offl@users.noreply.github.com>2021-10-01 18:20:12 +0300
commit0b76bb3519d427d8509257d48854c6ad941065e4 (patch)
treeb31ec3d6707253051e611efb16f20d880b3e7168
parent1a1c9ebeea7cc4d14c20a64155982384a088aa56 (diff)
DB/Commands: Add missing group commands description
Closes #26963
-rw-r--r--sql/updates/world/3.3.5/2021_10_01_04_world.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_10_01_04_world.sql b/sql/updates/world/3.3.5/2021_10_01_04_world.sql
new file mode 100644
index 00000000000..49929bb8f1c
--- /dev/null
+++ b/sql/updates/world/3.3.5/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.');