fix(Scripts/Commands): Implement quest status command (#23721)
This commit is contained in:
parent
c0b768ace6
commit
fa9574a8e2
3 changed files with 61 additions and 1 deletions
|
|
@ -0,0 +1,9 @@
|
|||
--
|
||||
DELETE FROM `acore_string` WHERE `entry` IN (5088, 5089);
|
||||
INSERT INTO `acore_string` (`entry`, `content_default`) VALUES
|
||||
(5088, 'Quest: {} ({}) \nStatus: {}'),
|
||||
(5089, 'Quest can\'t be taken!');
|
||||
|
||||
DELETE FROM `command` WHERE `name` = 'quest status';
|
||||
INSERT INTO `command` (`name`, `security`, `help`) VALUES
|
||||
('quest status', 2, 'Syntax: .quest status $id [$name]. Displays the selected player\'s status for the specified quest.');
|
||||
Loading…
Add table
Add a link
Reference in a new issue