Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

Commands

Thomas edited this page Apr 7, 2017 · 11 revisions

Chat commands

Warning: If you're a rogue or feral you will lose all your combo points when using these commands. (Due to target switching)

Focus current target or by name:

Will clear current focus if you have no target.

/focus
/focus playername

Focus current mouseover target:

/mfocus

Cast spell on focus target:

fcast will be used on nearest unit found when there are multiple mobs with the same name.

/fcast spellname

Cast spell on focus target if sat, else cast on current target:

/fcast spellname-target
or:
/fitem itemname-target

Use item effect on focus target:

/fitem itemname

Target the focus target:

/tarfocus

Swap focus and target:

/fswap

Assist focus:

/fassist

Clear current focus:

/clearfocus

If you need more advanced macros, you'll need to create your own script. "/fcast spell" can be accessed in scripts using SlashCmdList.FCAST("spell")

Example: This macro will cast Polymorph on focus if SHIFT modifier is held down, or else it'll cast it on current target.

/run if IsShiftKeyDown() then SlashCmdList.FCAST("Polymorph") else CastSpellByName("Polymorph") end
Clone this wiki locally