feat(Scripts/Commands): Implement gameobject respawn command (#18129)

This commit is contained in:
Andrew
2024-01-07 13:58:17 -03:00
committed by GitHub
parent 5487d3e7f2
commit 39ea396113
3 changed files with 27 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
--
DELETE FROM `command` WHERE `name` = 'gobject respawn';
INSERT INTO `command` (`name`, `security`, `help`) VALUES
('gobject respawn', 1, 'Syntax: .gobject respawn #guid./nRespawns the target gameobject.');
DELETE FROM `acore_string` WHERE `entry` = 5085;
INSERT INTO `acore_string` (`entry`, `content_default`) VALUES
(5085, 'Object %s (entry :%u guid: %u) respawned!');