This is a companion addon to go along with the Raid and Mythic+ Rankings site, Raider.IO: https://raider.io. With this addon installed, you'll gain access to an easy way to view the Mythic Keystone scores and activity for players-- all without leaving the game!
Simply hover over a player with your mouse, your guild roster, or even the Group Finder list where you see queued people; if they meet the minimum qualifications then you'll see their score and best run in the tooltip.
Additionally, you can right-click players from the standard target unit frame to Copy Raider.IO URL
and then easily look up their full profile on the site. With this functionality you can directly paste these URLs anywhere on Raider.IO to navigate to that player's profile page.
If you have run into any problems, check out our FAQ at https://raider.io/faq, or join us on Discord at: https://discord.gg/raider -- we always have people around willing to help.
The easiest way to get started is to download the Twitch Desktop App at: https://app.twitch.tv/download, and then search for the "Raider.IO Mythic Plus" addon and install it.
Once installed you can load into the game and you will start seeing Scores and Best Runs on players around you. This AddOn works by storing a snapshot of character data from Raider.IO and then using that to populate information on qualified players. To qualify for inclusion in the daily snapshot, players must meet this criteria:
- Have earned at least 500 points in any of the currently relevant seasons (7.3.2, 7.3, 7.2.5, 7.2), or have completed a 10+ or 15+ dungeon in-time. Honored and higher patrons do not have a minimum score requirement in order to be shown in the addon.
- Have logged in to the game within the past 30 days
Remember: We update the addon with the latest scores and top runs every day. Update regularly to ensure you are seeing the freshest information. Using the Twitch Client you can enable Automatic Updates for the addon to make this process a breeze.
Interested in supporting development of Raider.IO and getting some rewards while you're at it? We offer multiple levels of rewards.
Friendly:
- Browse Raider.IO AD-FREE!
- Friendly Patron rank in Discord
Honored:
- Exclusive profile header background options
- Minimum score requirement removed from addon for your characters
- Elevated queue priority
- Honored Patron rank in Discord
- Plus all rewards from Friendly tier
Revered:
- Participation in votes for upcoming Raider.IO features
- Custom Vanity URL for your guild or character
- Queue priority elevated above Honored level
- Revered Patron rank in Discord
- Plus all rewards from Friendly and Honored tiers
Our intent with this AddOn is to provide an easy way for people to get some information at a glance when forming groups. There is no substitute for talking with your fellow players, so be a pal and listen if an applicant whispers you. These are the fields we show, and when we show them:
Raider.IO M+ Score
: This is the overall score for the player in the current season. If the player's shown score ends in a(*)
then it was earned in a previous season. Experience from previous seasons is typically applicable to the current season.Best Run
: This will indicate the Mythic+ level for the player's best scoring run, along with the specific dungeon. Note: Sometimes, players on high pop servers may show a value of(KSM)
or(KSC)
. This means that we have validated via achievement criteria that they have completed and timed a +15 (KSM = Keystone Master) or +10 (KSC = Keystone Conqueror) in the past. When this keyword is highlighted green it means that the player'sBest For Dungeon
is also the same as their overallBest Run
.Best For Dungeon
: You'll see this line when using LFD to form or join a Keystone group. This will show the Mythic+ level of the player's best scoring run for the chosen dungeon. Note: If someone's highest run is only visible from KSM/KSC, they may have run any dungeon to earn that, but we will not know which specific dungeon they cleared.Timed 10-14+ Runs
/Timed 15+ Runs
: These lines indicate how many M+ runs have been completed by this player within the timer over the course of their entire history. This number is recorded even for runs that do not make it onto the realm's leaderboard, so high population realms will not be disadvantaged here.Main's Score
: This indicates a player's score on the Main they have chosen on Raider.IO. This will only show if the Main's Score is greater than the current character's score. If someone has a good score on their main, then much of their prior experience will help them perform better in dungeons while on their alt.DPS Score
,Tank Score
,Healer Score
: These are the role-specific scores for the player in the current season. These are only shown if greater than zero. By default, role scores are not shown, and you must hold down a modifier key (e.g. alt) to show them. If desired, you can make it so Role scores always show by turning on the option Always Show Role Scores.Avg. Timed +X Player Score
: This is the rounded median score of players who have successfully completed Mythic+ runs in time at this level. This data is sampled from the past 60 days of runs tracked on Raider.IO, and it excludes the top and bottom 1% of scores at each level. This is intended to provide a guide for the type of score you might consider when forming or joining a group based on data seen across all players.
Our recommended settings are enabled by default, but we've provided several options to customize how and where the tooltips might show while in-game. Type /raiderio
to open the Raider.IO options frame. Alternatively, you can also find a shortcut in the Interface > AddOn
settings frame.
Here you can easily enable or disable various features, including whether to show scores from each faction, and various tooltip customization options.
Remember to click Save to save the changes, or Cancel to abort and close the dialog.
Scores map to a specific color based on their range. We've followed the standard WoW quality colors, but added additional gradients between the base values to provide more brackets to ascend through. See the full tiers here:
We love our fellow developers! We wanted to provide anyone in the community a simple way to tap into the scores that are a part of this addon. Addon developers can do this by utilizing the RaiderIO
table to access certain APIs we provide.
Use this function to retrieve a profile for a specific unit, or by using a name and realm, and optionally provide a faction (1 for Alliance, 2 for Horde) for a quicker lookup.
Retrieve Mythic+ Scores for a given unit/player with any of these methods:
RaiderIO.GetScore(unit)
RaiderIO.GetScore("Name-Realm"[, nil, 1|2])
RaiderIO.GetScore("Name", "Realm"[, 1|2])
The following table is returned if there are results for the given player, otherwise nil:
{
region = "us" | "eu" | "kr" | "tw",
faction = 1|2,
date = "2001-12-31T12:00:00Z",
season = "Season 7.2.5",
prevSeason = "Season 7.2.0",
name = "Name",
realm = "Realm",
allScore = number,
prevAllScore = number,
tankScore = number,
healScore = number,
dpsScore = number,
isTank = boolean,
isHealer = boolean,
isDPS = boolean,
numRoles = number
}
Retrieve the color to use when rendering the given score value.
RaiderIO.GetScoreColor(number)
This will return a tuple of r/g/b values in the 0-1 range:
r, g, b