KPI
Vengeful Gladiator
Hello, I will be starting a Series of guides that will focus on Advanced Class Specific Macros.
*This Guide is for the simplified basic users, who may not know the capability of their class in classic WoW and focuses on turning you into a Rank14 Grand Marshal/High Warlord from a Basic level 10 Boar Slaying Dwarf.
After placing the macro you can reference it in other macros with the following:
1|
2|
*Using Trinkets / Inventory Items
Vanilla doesn’t have support for /use command etc. that exists in retail unless you use an addon for it. To use equipment with right click functionality you need to know the slotID.
This example will use the trinket in your top slot:
The command for using an item in your first bag slot (for example a bandage) on yourself is the following:
UseContainerItem(bagID, slotNumber, UseOnSelf?)
Bandage self with Autoselfcasting disabled
This macro works without any addons and you can have the bandage placed anywhere in your bags.
It looks for items with the word “Bandage” in your bags starting in bag 0 so if the macro uses the wrong bandage before the Heavy Runecloth, move Heavy Runecloth into bag 0 (your backpack). Here is a list with bandages it should work with:
It works with autoselfcasting disabled in options.
Auto Self Cast with the interface option disabled
Priest:
Cast renew on targets that do not have renew yet (KEY!):
Dispel magic on yourself while targeting others. (2x)
Shadow Priest Mind flay spammable macro
This macro will cast Mind Flay only if your current target is not already a victim to the spell. That way you can spam the spell without accidentally interrupting yourself. There is a limitation to this that you should know about: If you are 2 or more shadow priests in the same group and if one is already casting mind flay on your target, you will not be able to cast it at the same time.
Mouse Over Healing Macros
*If anyone has anything to add please post below and I will add to Official edit.
*This Guide is for the simplified basic users, who may not know the capability of their class in classic WoW and focuses on turning you into a Rank14 Grand Marshal/High Warlord from a Basic level 10 Boar Slaying Dwarf.
After placing the macro you can reference it in other macros with the following:
1|
Code:
/run UseAction(37)
Code:
/run UseAction(37) CastSpellByName("Regrowth(Rank 8)")
*Using Trinkets / Inventory Items
Vanilla doesn’t have support for /use command etc. that exists in retail unless you use an addon for it. To use equipment with right click functionality you need to know the slotID.
This example will use the trinket in your top slot:
Code:
/run UseInventoryItem(13)
The command for using an item in your first bag slot (for example a bandage) on yourself is the following:
Code:
/run UseContainerItem(1, 1, 1)
Bandage self with Autoselfcasting disabled
This macro works without any addons and you can have the bandage placed anywhere in your bags.
It looks for items with the word “Bandage” in your bags starting in bag 0 so if the macro uses the wrong bandage before the Heavy Runecloth, move Heavy Runecloth into bag 0 (your backpack). Here is a list with bandages it should work with:
It works with autoselfcasting disabled in options.
Auto Self Cast with the interface option disabled
Code:
/run TargetUnit("player")function u(n)for b=0,4 do for s=1,GetContainerNumSlots(b)do a=GetContainerItemLink(b,s)if a then if string.find(a,n)then UseContainerItem(b,s,1)return end end end end end u("Bandage")TargetLastTarget()
Priest:
Cast renew on targets that do not have renew yet (KEY!):
Code:
/script --CastSpellByName("Renew")
/script local b = 1; for j=0,15 do a = UnitBuff("target", j); if (a and string.find(a, "Renew")) then b = nil; break; end; end; if ( then CastSpellByName("Renew"); end;
Dispel magic on yourself while targeting others. (2x)
Code:
/script CastSpellByName("Dispel Magic",1)
/script TargetUnit("player"); CastSpellByName("Dispel Magic"); TargetLastTarget()
Shadow Priest Mind flay spammable macro
This macro will cast Mind Flay only if your current target is not already a victim to the spell. That way you can spam the spell without accidentally interrupting yourself. There is a limitation to this that you should know about: If you are 2 or more shadow priests in the same group and if one is already casting mind flay on your target, you will not be able to cast it at the same time.
Code:
/run m=0 for i=1,40 do if(strfind(tostring(UnitDebuff("target",i)),"Spell_Shadow_SiphonMana"))then m=1 end end if m==0 then CastSpellByName("Mind Flay(Rank 6)") end
Mouse Over Healing Macros
Code:
/cast [target=mouseover] Flash Heal
Code:
/cast [target=mouseover] Greater Heal
Code:
/cast [target=mouseover] Renew
Code:
/cast [target=mouseover] Circle of Healing
Code:
/cast [target=mouseover] Dispel Magic
*If anyone has anything to add please post below and I will add to Official edit.
Last edited: