diff options
| author | Myran2 <alternative@masschaos-gm.com> | 2012-09-13 15:32:17 +0100 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2012-09-13 15:32:33 +0100 |
| commit | 13e140cfac6f8de5e79d804e197903d47f1b017d (patch) | |
| tree | d7d8ff59f16142465c012f165876b406e64e8ec8 /sql | |
| parent | b9434b63770dc843d68a76bf3f8df64cb68f10f5 (diff) | |
Core/Commands: Added a command that shows what cheat commands you have active
Closes #7721
(Modified)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2012_09_13_02_world_trinity_string.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/2012_09_13_02_world_trinity_string.sql b/sql/updates/world/2012_09_13_02_world_trinity_string.sql new file mode 100644 index 00000000000..f7214ad127b --- /dev/null +++ b/sql/updates/world/2012_09_13_02_world_trinity_string.sql @@ -0,0 +1,12 @@ +DELETE FROM `command` WHERE `name` = 'cheat status'; +INSERT INTO `command` (`name`, `security`, `help`) VALUES +('cheat status', 2, 'Syntax: .cheat status \n\nShows the cheats you currently have enabled.'); + +DELETE FROM `trinity_string` WHERE `entry` BETWEEN 357 AND 362; +INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES +(357, 'Cheat Command Status:'), +(358, 'Godmode: %s.'), +(359, 'Casttime: %s.'), +(360, 'Cooldown: %s.'), +(361, 'Power: %s.'), +(362, 'Waterwalk: %s.'); |
