Keystone Companion

Keystone Companion

18.1k Downloads

display best dungeons for the current tyrannical/fortified week

kaelonR opened this issue ยท 2 comments

commented

Split from #18:

Also, it would be cool if holding alt or some other mod keybind would display best dungeons for the current tyrannical/fortified week in this tooltip

https://imgur.com/a/TdkreBi

Not sure if that's possible but it would help in making decisions for what key to go to next.

commented
commented
local maps = C_ChallengeMode.GetMapTable()
for _, mapID in ipairs(maps) do
   local duration, level = C_MythicPlus.GetWeeklyBestForMap(mapID)
   if duration then
      local name = C_ChallengeMode.GetMapUIInfo(mapID)
      print(string.format("+%d %s in %s", level, name, SecondsToTime(duration)))
   end
end

image