User Interface: Difference between revisions

From Vanilla Plus
Jump to navigation Jump to search
No edit summary
Tags: Reverted Visual edit
No edit summary
Tags: Reverted Visual edit
Line 27: Line 27:
** /script u=UnitResistance y="target" a=u(y ,0) h=u(y ,1) f=u(y ,2) n=u(y ,3) fr=u(y ,4) s=u(y ,5) z=u(y ,6) SendChatMessage(UnitName(y).." has "..a.." Armor, "..h.." HR, "..f.." FR, "..n.." NR, "..fr.." FrR, "..s.." SR and "..z.." AR.", SAY)
** /script u=UnitResistance y="target" a=u(y ,0) h=u(y ,1) f=u(y ,2) n=u(y ,3) fr=u(y ,4) s=u(y ,5) z=u(y ,6) SendChatMessage(UnitName(y).." has "..a.." Armor, "..h.." HR, "..f.." FR, "..n.." NR, "..fr.." FrR, "..s.." SR and "..z.." AR.", SAY)
* '''Instance Reset'''   
* '''Instance Reset'''   
** /script ResetInstances();
** /script ResetInstances();[[index.php?title=File:Action_Bar_Slot_Numbers.png|link=File:Action_Bar_Slot_Numbers.png|right]]
* '''Autoattack''' [Note: Requires putting your Attack spell from spellbook on to whichever Action Bar slot is designated in script eg - 12 as shown would be the last slot of Bar 1 or = for default UI) [[File:Action Bar Slot Numbers.png|frameless]]
* '''Autoattack''' [Note: Requires putting your Attack spell from spellbook on to whichever Action Bar slot is designated in script eg - 12 as shown would be the last slot of Bar 1 or = for default UI)  
** /script if not IsCurrentAction(12) then UseAction(12) end;
** /script if not IsCurrentAction(12) then UseAction(12) end;
* '''Raid Target Icons'''   
* '''Raid Target Icons'''   
** '''Skull''' /script SetRaidTarget("target", 8)
** '''Skull''' /script SetRaidTarget("target", 8)

Revision as of 03:08, 20 April 2026

Vanilla Plus Github Addon Discussion: https://github.com/KrekoG/vanillaplus#addons-maintained-by-the-community

General Addons:

Vanilla+ Class/Role Specific Tools:

Macros:

  • Mob Attack Damage/Speed
    • /script ld, hd, old, ohd, pb, nb, pm = UnitDamage("target"); SendChatMessage(UnitName("target").."'s main hand attacks hit for "..ld.." to "..hd.. " and their offhand attacks hit for "..old.." to "..ohd);
  • Mob Armor & Resist
    • /script u=UnitResistance y="target" a=u(y ,0) h=u(y ,1) f=u(y ,2) n=u(y ,3) fr=u(y ,4) s=u(y ,5) z=u(y ,6) SendChatMessage(UnitName(y).." has "..a.." Armor, "..h.." HR, "..f.." FR, "..n.." NR, "..fr.." FrR, "..s.." SR and "..z.." AR.", SAY)
  • Instance Reset
  • Autoattack [Note: Requires putting your Attack spell from spellbook on to whichever Action Bar slot is designated in script eg - 12 as shown would be the last slot of Bar 1 or = for default UI)
    • /script if not IsCurrentAction(12) then UseAction(12) end;
  • Raid Target Icons
    • Skull /script SetRaidTarget("target", 8)