feat(Scripts/Commands): Implement go quest starter/ender command (#10442)

* feat(Scripts/Commands): Implement go quest starter/ender command

* Update cs_go.cpp
This commit is contained in:
Skjalf
2022-01-31 08:56:37 -03:00
committed by GitHub
parent 809e11d1a9
commit 2d7434f767
3 changed files with 156 additions and 30 deletions

View File

@@ -0,0 +1,9 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1643502379399332300');
DELETE FROM `command` WHERE `name` = 'go quest';
INSERT INTO `command` (`name`, `security`, `help`) VALUES
('go quest', 1, 'Syntax: .go quest <starter/ender> <quest>.\nTeleports you to the quest starter/ender creature or object.');
DELETE FROM `acore_string` WHERE `entry` = 5082;
INSERT INTO `acore_string` (`entry`, `content_default`, `locale_deDE`) VALUES
(5082, 'Incorrect syntax. Specify either \'starter\' or \'ender\'.', 'Falsche syntax. Entweder \'starter\' oder \'ender\' angeben.');