fix(Scripts/Commands): Implement quest status command (#23721)

This commit is contained in:
Andrew
2025-11-17 18:48:23 -03:00
committed by GitHub
parent c0b768ace6
commit fa9574a8e2
3 changed files with 61 additions and 1 deletions

View File

@@ -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.');