Added Delves

This commit is contained in:
Manmadedrummer
2025-11-23 11:47:43 -05:00
parent 9196564a2e
commit c699886d66
2 changed files with 29 additions and 4 deletions

View File

@@ -199,6 +199,20 @@ local teleportCategories = {
{id = 157, name = "Windpeak Island", image = "Interface\\Buttons\\Teleport\\Windpeak"},
},
["Delves"] = {
{id = 200, name = "Altar of Storms", image = "Interface\\Buttons\\Teleport\\AltarOfStorms"},
{id = 201, name = "Arathi Highlands Farm", image = "Interface\\Buttons\\Teleport\\ArathiFarm"},
{id = 202, name = "Blackchar Cave", image = "Interface\\Buttons\\Teleport\\BlackcharCave"},
{id = 203, name = "Demon Hunter Cove", image = "Interface\\Buttons\\Teleport\\DemonhunterCove"},
{id = 204, name = "Elwynn Falls", image = "Interface\\Buttons\\Teleport\\ElwynnFalls"},
{id = 205, name = "Forgotten Gnome Camp", image = "Interface\\Buttons\\Teleport\\ForgottenGnomeCamp"},
{id = 206, name = "Newman's Landing", image = "Interface\\Buttons\\Teleport\\NewmansLanding"},
{id = 207, name = "Quel'Thalas Island", image = "Interface\\Buttons\\Teleport\\QuelthalasIsland"},
{id = 208, name = "Sandfury Delve", image = "Interface\\Buttons\\Teleport\\Sandfury"},
{id = 209, name = "Stonetalon Logging Camp", image = "Interface\\Buttons\\Teleport\\StonetalonLoggingCamp"},
{id = 210, name = "Stonetalon Ruins", image = "Interface\\Buttons\\Teleport\\StonetalonRuins"},
},
}
function TeleportSelectorHandlers.ShowTeleportUI()
@@ -253,6 +267,7 @@ function TeleportSelectorHandlers.ShowTeleportUI()
"WOTLK Dungeons",
"Raids",
"Araxia",
"Delves",
}
for i, category in ipairs(categories) do
@@ -374,6 +389,4 @@ function ShowTeleportButtons()
label:SetText(loc.name)
label:SetTextColor(209 / 255, 163 / 255, 14 / 255)
end
end
end

View File

@@ -173,13 +173,25 @@ local locations = {
[151] = {map = 571, x = 9049.37, y = -1282.35, z = 1060.19, o = 5.8395}, -- Ulduar
[152] = {map = 571, x = 5453.72, y = 2840.79, z = 421.28, o = 0.0}, -- Vault of Archavon
-- Custom
-- Araxia
[153] = {map = 1, x = 16225.988, y = 16248.773, z = 14.061647, o = 1.7947958}, -- Guild Hall
[154] = {map = 800, x = 6012.925, y = 1603.3754, z = 34.00426, o = 4.637557}, -- Isle of Giants
[155] = {map = 5000, x = -13950, y = 2877, z = 9, o = 1.276430}, -- Morza Island
[156] = {map = 1, x = -10737.604,y = 2468.4258, z = 6.3820477, o = 5.7822013}, -- Silithus Camp
[157] = {map = 0, x = -5119.211, y = 4028.4114, z = 51.434544, o = 0.31480914}, -- Windpeak Island
-- Delves (IDs 200+)**
[200] = {map = 911, x = -11627.419922, y = -2348.38, z = 10.088909, o = 3.813848}, -- Altar of Storms
[201] = {map = 906, x = -1913.873779, y = -3907.356689, z = 110.663895, o = 4.729281}, -- Arathi Highlands Farm
[202] = {map = 904, x = 2423.38, y = 2557.95, z = 101.211, o = 6.176579}, -- Blackchar Cave
[203] = {map = 901, x = 9648.030273, y = -208.490005, z = 21.402897, o = 0.441980}, -- Demon Hunter Cove
[204] = {map = 907, x = -8325.285156, y = -340.285370, z = 145.863403, o = 6.022076}, -- Elwynn Falls
[205] = {map = 909, x = -5931.078613, y = 986.903076, z = 488.972839, o = 4.873131}, -- Forgotten Gnome Camp
[206] = {map = 910, x = -6377.274902, y = -847.213379, z = 396.180176, o = 6.048255}, -- Newman's Landing
[207] = {map = 908, x = 4239.342285, y = -2683.871338, z = 5.781008, o = 4.806246}, -- Quel'Thalas Island
[208] = {map = 905, x = -12965.552734, y = -1277.645020, z = 45.990704, o = 4.002834}, -- Sandfury Delve
[209] = {map = 902, x = 1700.358765, y = 1779.384521, z = 144.574692, o = 4.328319}, -- Stonetalon Logging Camp
[210] = {map = 900, x = 2725.531738, y = 1947.953735, z = 290.990601, o = 1.344944}, -- Stonetalon Ruins
}