From a0917b5727e5256477712187579c4f06ccc5993a Mon Sep 17 00:00:00 2001 From: dude22072 Date: Sun, 20 Feb 2022 15:55:38 -0600 Subject: [PATCH] More EasyWarp locations --- src/world/Manager/DebugCommandMgr.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/world/Manager/DebugCommandMgr.cpp b/src/world/Manager/DebugCommandMgr.cpp index 61613421..13d8ca16 100644 --- a/src/world/Manager/DebugCommandMgr.cpp +++ b/src/world/Manager/DebugCommandMgr.cpp @@ -1433,10 +1433,16 @@ void DebugCommandMgr::easyWarp( char* data, Sapphire::Entity::Player& player, st warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 156 )->getGuId(), { 22.2674f, 21.2527f, -634.261f }, -0.369245f ); else if( subCommand == "little_solace" ) warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 152 )->getGuId(), { 24.557f, -3.78776f, 212.615f }, 2.59117f ); - else if( subCommand == "adders_nest" ) - warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 132 )->getGuId(), {-64.7448f, -0.503434f, 2.21786f }, -2.64096f ); - else if( subCommand == "hall_of_flames" ) + else if( subCommand == "adders_nest" || subCommand == "gridania_gc" ) + warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 132 )->getGuId(), { -64.7448f, -0.503434f, 2.21786f }, -2.64096f ); + else if( subCommand == "hall_of_flames" || subCommand == "uldah_gc" ) warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 130 )->getGuId(), { -129.24f, 4.1f, -93.5221f }, -2.30172f ); + else if( subCommand == "maelsrom_command" || subCommand == "limsa_gc" ) + warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 128 )->getGuId(), { 76.3952f, 40.0955f, 71.6461f }, 1.62673f ); + else if( subCommand == "carline_canopy" || subCommand == "gridania_adventurer" ) + warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 132 )->getGuId(), { 43.729f, -7.96559f, 103.965f }, -1.59436f ); + else if( subCommand == "observatorium" ) + warpMgr.requestMoveTerritory( player, Common::WarpType::WARP_TYPE_GM, terriMgr.getZoneByTerritoryTypeId( 155 )->getGuId(), { 224.965f, 221.958f, 301.33f } , -0.0316129f); else PlayerMgr::sendUrgent( player, "{0} is not a valid easyWarp location.", subCommand ); }