mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 09:44:45 +01:00
Core/Commands: Implemented command to teleport character to npc
Closes #25870
This commit is contained in:
11
sql/updates/world/3.3.5/2021_01_28_00_world.sql
Normal file
11
sql/updates/world/3.3.5/2021_01_28_00_world.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
DELETE FROM `command` WHERE `name` IN ('tele name npc id','tele name npc guid','tele name npc name');
|
||||
INSERT INTO `command` (`name`,`help`) VALUES
|
||||
('tele name npc id','Syntax: .tele name id #playername #creatureId
|
||||
|
||||
Teleport the given character to first found creature with id #creatureId. Character can be offline.'),
|
||||
('tele name npc guid','Syntax: .tele name id #playername #creatureSpawnId
|
||||
|
||||
Teleport the given character to creature with spawn id #creatureSpawnId. Character can be offline.'),
|
||||
('tele name npc name','Syntax: .tele name id #playername #creatureName
|
||||
|
||||
Teleport the given character to first found creature with name (must match exactly) #creatureName. Character can be offline.');
|
||||
Reference in New Issue
Block a user