Server under development · A closed beta is running: the game server and the website may restart or go briefly offline without warning, and characters may be wiped before release. Learn more

Getting started

Interface, Addons and Macros

Asyncio 26 September 2026 126

How to get your interface into working order in half an hour: client settings, addons for 7.3.5 and a few macros you will really miss in dungeons.

Settings without addons

  • Action bars. Esc → Interface → "ActionBars": turn on the extra bars, otherwise there is nowhere to put your cooldowns and macros.
  • Interface scale. System → Graphics: 0.7–0.8 frees up the centre of the screen on a large monitor.
  • Numbers on the health and resource bars are turned on in the "Display" section.
  • Camera. Type /console cameraDistanceMaxZoomFactor 2.6 into chat — that is the maximum for Legion.

Nameplates

V toggles enemy nameplates, Shift+V friendly ones. Their behaviour is configured with chat commands:

/console nameplateShowAll 1
/console nameplateMotion 1
/console nameplateOverlapV 1.2
/console nameplateMaxDistance 60

Show every enemy nearby, stack the plates vertically, set the gap between them and the range in yards. If your screen is cluttered, drop the range to 40.

Where to put addons

  1. There is only one path: World of Warcraft\Interface\AddOns\. Inside it there has to be a folder with a .toc file — for example AddOns\Details\Details.toc. An extra nested folder left over from the archive means the addon will not load.
  2. Some addons come as a set of several folders — copy all of them.
  3. Restart the game. If an addon is marked as out of date, tick "Load out of date AddOns", but what you actually need is a build for interface version 70300.
  4. The settings live in WTF\Account\ACCOUNTNAME\ — copy that folder before you start experimenting with ElvUI.

Addons for 7.3.5

AddonWhat forVersion
ElvUIReplaces the entire interface: unit frames, bars, bags, chat, mapThe 10.x branch, 11.x will not install
Details! Damage MeterDamage and healing meter, death analysisThere is a separate Legion build
WeakAuras 2Indicators for cooldowns, buffs and boss mechanicsThe 2.x branch
Deadly Boss ModsBoss timers and warningsThe Legion core plus the raid packs
BigWigs + LittleWigsAn alternative to DBM, LittleWigs adds the dungeonsInstall it instead of DBM, otherwise you get double timers
Mythic Dungeon ToolsMythic+ routes: trash percentages and pullsThe Legion branch 1.5.x
PawnShows in the tooltip whether an item is an upgrade or notEnter your own stat weights
TomTomNavigation arrow and waypoints by coordinatesIndispensable in Suramar
BagnonAll your bags and the bank in a single windowBagnon_ItemLevel shows the ilvl on the icon
GTFOA sound when you are standing in a damage puddleThe single most useful addon for a newcomer
Angry KeystonesTimer and trash percentages in Mythic+There is a Legion version

Do not install addons with an "automatic rotation": they either do not work at all or they break the client.

Macros

You open them with /m. The limits: 255 characters per macro, 120 general and 18 personal. #showtooltip on the first line gives you the icon and the cooldown. Conditions in square brackets are read from left to right, and empty [] means "in all other cases".

1. Focus and focus interrupt — you interrupt a cast without losing your own target. Substitute the name of your interrupt:

/focus [@mouseover,exists][]
#showtooltip
/cast [@focus,harm,nodead][] INTERRUPT_NAME

2. Mouseover heal — heals whoever your mouse is hovering over (including on a party frame), otherwise your target, otherwise yourself. The example uses Flash Heal; protective spells cast on an ally such as Blessing of Protection work the same way:

#showtooltip
/cast [@mouseover,help,nodead][@target,help,nodead][@player] Flash Heal

3. Stopcasting — without it the button that saves your life gets "eaten" by the spell you are already casting. The classic case is Ice Block:

#showtooltip
/stopcasting
/cast Ice Block

4. Trinkets and burst. The trinket slots are 13 and 14:

#showtooltip ARTIFACT_ABILITY_NAME
/use 13
/use 14
/cast ARTIFACT_ABILITY_NAME
You cannot put together a "rotation on one button": one press means one spell on the global cooldown. It only makes sense to combine things that do not spend the GCD — trinkets and racials like Blood Fury or Berserking.

If you are short on time

  1. Turn on nameplates (V) and the extra action bars.
  2. Install DBM or BigWigs and GTFO — the minimum needed to stop dying to mechanics.
  3. Put together the focus interrupt and the mouseover macro.
  4. ElvUI, WeakAuras and MDT — once you have found your feet.