diff options
| author | Naddley <NaddleyTC@gmail.com> | 2025-07-19 20:08:51 +0200 |
|---|---|---|
| committer | Naddley <NaddleyTC@gmail.com> | 2025-07-19 20:08:51 +0200 |
| commit | a99089ae531a7d332f16c8d523b93b06a6a4f342 (patch) | |
| tree | ec930c554203d37f3e56a09079327432cde9666e | |
| parent | 253a74f468e77805876fca5ba3e0257da68d0e7e (diff) | |
DB/Player: Updated action buttons for DH
| -rw-r--r-- | sql/updates/world/master/2025_07_19_09_world.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_07_19_09_world.sql b/sql/updates/world/master/2025_07_19_09_world.sql new file mode 100644 index 00000000000..581851fe46a --- /dev/null +++ b/sql/updates/world/master/2025_07_19_09_world.sql @@ -0,0 +1,17 @@ +-- Nightelf +DELETE FROM `playercreateinfo_action` WHERE (`race`=4 AND `class`=12 AND `button`=11); +INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES +(4, 12, 11, 200175, 0); -- Felsaber + +UPDATE `playercreateinfo_action` SET `action`=344862 WHERE (`race`=4 AND `class`=12 AND `button`=2); -- Chaos Strike +UPDATE `playercreateinfo_action` SET `action`=344859 WHERE (`race`=4 AND `class`=12 AND `button`=1); -- Demon's Bite +UPDATE `playercreateinfo_action` SET `action`=344865 WHERE (`race`=4 AND `class`=12 AND `button`=0); -- Fel Rush + +-- Bloodelf +DELETE FROM `playercreateinfo_action` WHERE (`race`=10 AND `class`=12 AND `button`=11); +INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES +(10, 12, 11, 200175, 0); -- Felsaber + +UPDATE `playercreateinfo_action` SET `action`=344862 WHERE (`race`=10 AND `class`=12 AND `button`=2); -- Chaos Strike +UPDATE `playercreateinfo_action` SET `action`=344859 WHERE (`race`=10 AND `class`=12 AND `button`=1); -- Demon's Bite +UPDATE `playercreateinfo_action` SET `action`=344865 WHERE (`race`=10 AND `class`=12 AND `button`=0); -- Fel Rush |
