11 lines
734 B
Lua
11 lines
734 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@return number dungeonLevel
|
|
---@return number x1
|
|
---@return number y1
|
|
---@return number x2
|
|
---@return number y2
|
|
---Returns which map image is currently selected on the world map (for zones which use more than one map image). Used in zones with more than one "floor" or area, such as Dalaran and several Wrath of the Lich King dungeons and raids. More than one map image may contain the player's current location; if the world map has not been explicitly set to show a particular area, this returns whichever is the "best" match. The coordinates provided are used to place the different dungeon maps relative to each other.
|
|
function GetCurrentMapDungeonLevel() end
|