Skip to content

Commit

Permalink
Core/Commands: Added transport position for command .gps
Browse files Browse the repository at this point in the history
(cherry picked from commit 9c99a1d)
  • Loading branch information
Vincent-Michael authored and Shauren committed Mar 12, 2016
1 parent 2a37266 commit 782bc7c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions sql/updates/world/2016_03_12_2015_11_14_00_world.sql
@@ -0,0 +1,3 @@
DELETE FROM `trinity_string` WHERE `entry`=186;
INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES
(186, 'TransMapID: %u TransOffsetX: %f TransOffsetY: %f TransOffsetZ: %f TransOffsetO: %f (Transport ID: %u %s)');
4 changes: 3 additions & 1 deletion src/server/game/Miscellaneous/Language.h
Expand Up @@ -208,7 +208,9 @@ enum TrinityStrings
LANG_INVALID_GAMEOBJECT_TYPE = 176,
LANG_GAMEOBJECT_DAMAGED = 177,
LANG_GRID_POSITION = 178,
// Room for more level 1 179-199 not used
// 179-185 used in 6.x branch
LANG_TRANSPORT_POSITION = 186,
// Room for more level 1 187-199 not used

// level 2 chat
LANG_NO_SELECTION = 200,
Expand Down
5 changes: 5 additions & 0 deletions src/server/scripts/Commands/cs_misc.cpp
Expand Up @@ -36,6 +36,7 @@
#include "MMapFactory.h"
#include "DisableMgr.h"
#include "SpellHistory.h"
#include "Transport.h"

class misc_commandscript : public CommandScript
{
Expand Down Expand Up @@ -237,6 +238,10 @@ class misc_commandscript : public CommandScript
areaId, (areaEntry ? areaEntry->area_name[handler->GetSessionDbcLocale()] : unknown),
object->GetPhaseMask(),
object->GetPositionX(), object->GetPositionY(), object->GetPositionZ(), object->GetOrientation());
if (Transport* transport = object->GetTransport())
handler->PSendSysMessage(LANG_TRANSPORT_POSITION,
transport->GetGOInfo()->moTransport.mapID, object->GetTransOffsetX(), object->GetTransOffsetY(), object->GetTransOffsetZ(), object->GetTransOffsetO(),
transport->GetEntry(), transport->GetName().c_str());
handler->PSendSysMessage(LANG_GRID_POSITION,
cell.GridX(), cell.GridY(), cell.CellX(), cell.CellY(), object->GetInstanceId(),
zoneX, zoneY, groundZ, floorZ, haveMap, haveVMap, haveMMap);
Expand Down

0 comments on commit 782bc7c

Please sign in to comment.