aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorTreeston <treeston.mmoc@gmail.com>2019-08-07 01:45:24 +0200
committerTreeston <treeston.mmoc@gmail.com>2019-08-07 01:45:24 +0200
commit57b36dfdc6b077cc4eba29406e3ded4dbf9f8ce6 (patch)
tree9bb55c238a8e7832d4f027084b072ceb973fcce6 /sql
parent4320a021e93423122745684e2689aa1a7028f8b4 (diff)
Scripts/Commands: Add .go boss, and do a usability pass over .go instance to match it.
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/3.3.5/2019_08_06_05_world.sql30
1 files changed, 30 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_08_06_05_world.sql b/sql/updates/world/3.3.5/2019_08_06_05_world.sql
new file mode 100644
index 00000000000..591d7564c3e
--- /dev/null
+++ b/sql/updates/world/3.3.5/2019_08_06_05_world.sql
@@ -0,0 +1,30 @@
+--
+DELETE FROM `trinity_string` WHERE `entry` BETWEEN 1205 AND 1211;
+INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES
+(1205, 'No bosses were found matching your input.'),
+(1206, 'Multiple bosses match your input - please be more specific:'),
+(1207, '|- #%05u \'%s\' (%s)'),
+(1208, 'Multiple spawn points exist for boss \'%s\' (creature #%05u) - go to one using .go creature:'),
+(1209, '|- %06u (map #%03u \'%s\' at %s)'),
+(1210, 'Failed to teleport you to spawn point %u for boss \'%s\' (creature #%05u) - are you missing an attunement for map \'%s\'?'),
+(1211, 'Teleported you to spawn point for boss \'%s\' (creature #%05u, spawnid %u)');
+
+DELETE FROM `trinity_string` WHERE `entry` BETWEEN 1189 AND 1198;
+INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES
+(1189, 'No instances were found matching your input.'),
+(1190, 'Multiple instances match your input - please be more specific:'),
+(1191,'|- \'%s\' (map #%03u, %s)'),
+-- 1192 is newly unused
+(1193,'Could not find entrance portal for map \'%s\' (map #%03u)'),
+(1194,'Could not find exit portal for map \'%s\' (map #%03u)'),
+(1195,'Teleported you to the entrance of \'%s\' (map #%03u)'),
+(1196,'Teleported you to the start of \'%s\' (map #%03u)'),
+(1197,'Failed to teleport you to the entrance of \'%s\' (map #%03u) - are you missing an attunement for map \'%s\' (#%03u)?'),
+(1198,'Failed to teleport you to the start of \'%s\' (map #%03u) - are you missing an attunement for the instance?');
+
+DELETE FROM `command` WHERE `name` IN ('go boss','go instance');
+INSERT INTO `command` (`name`,`permission`,`help`) VALUES
+('go instance', 377, 'Syntax: .go instance <part(s) of name>
+Teleport yourself to the instance whose name and/or script name best matches the specified search string(s).'),
+('go boss', 377, 'Syntax: .go boss <part(s) of name>
+Teleport yourself to the dungeon boss whose name and/or script name best matches the specified search string(s).');