feature(Scripts/Commands) choose Xth spawn of entry for go creature/gameobject id (#22363)

This commit is contained in:
Tereneckla
2025-06-27 08:39:26 +00:00
committed by GitHub
parent e8429688f1
commit ec23669a29
3 changed files with 86 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
--
DELETE FROM `acore_string` WHERE `entry` = 288;
INSERT INTO `acore_string` (`entry`,`content_default`) VALUES (288,'Cannot go to spawn {} as only {} exist');
UPDATE `command` SET `help`='Syntax: .go creature id #creature_entry [#spawn] Teleports you to first (if no #spawn provided) spawn the given creature entry. ' WHERE `name` = 'go creature id';
DELETE FROM `command` WHERE `name` = 'go gameobject id';
INSERT INTO `command` VALUES('go gameobject id',1,'Syntax: .go gameobject id #gameobject_entry [#spawn] Teleports you to first (if no #spawn provided) spawn the given gameobject entry.');