meta data for this page
  •  
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


using:macros [2023/01/26 17:12] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Using Macro's ======
  
 +Create a new macro, by typing ''/macro'', with a unique name and enter the macro name on the spells tab in HeaBot\\
 +For example a priest could create a macro called RN for Renew, open HealBot options and on the spells tab replace the spell Renew with RN
 +
 +Casting spells with HealBot requires ''@hbtarget'' or ''@hbtargettarget'' as the target, for example:
 +<code text>
 +#show SpellName
 +/cast [@hbtarget] SpellName
 +</code>
 +
 +===== Utility Macros =====
 +
 +==== Suppressing Errors ====
 +
 +With healbot installed, the following commands can be added to macros to suppress sound and text errors.\\
 +Using healbot commands, in place of the standard methods, frees up the number of characters available in each macro.
 +
 +  * Suppress Sound On<code text>
 +/hb se1
 +</code>
 +
 +  * Suppress Text On<code text>
 +/hb se3
 +</code>
 +
 +  * Suppress Sound Off<code text>
 +/hb se2
 +</code>
 +
 +  * Suppress Text Off<code text>
 +/hb se4
 +</code>
 +
 +==== Private Lists ====
 +
 +  * Toggle Private Tank<code>
 +/hb tpt hbtarget
 +</code>
 +
 +  * Toggle Private Healer<code>
 +/hb tph hbtarget
 +</code>
 +
 +  * Toggle Private List<code>
 +/hb tpl hbtarget
 +</code>
 +
 +==== Trade ====
 +
 +  * Target and open a trade window<code>
 +/target hbtarget
 +/trade
 +</code>
 +
 +==== Follow ====
 +
 +  * Target and follow<code>
 +/follow hbtarget
 +</code>
 +
 +==== Inspect ====
 +
 +  * Target and follow<code>
 +/target hbtarget
 +/inspect
 +</code>
 +
 +
 +==== Main Tank and Main Assist ====
 +
 +  * Assign the main tank role<code>
 +/maintank hbtarget
 +</code>
 +
 +  * Demote from being the main tank<code>
 +/maintankoff hbtarget
 +</code>
 +
 +  * Assign the main assist role<code>
 +/mainassist hbtarget
 +</code>
 +
 +  * Demote from being a main assist<code>
 +/mainassistoff hbtarget
 +</code>
 +
 +
 +==== World Markers ====
 +
 +  * Set Blue Square<code>
 +/worldmarker [@hbtarget] 1
 +</code>
 +
 +  * Set Green Triangle<code>
 +/worldmarker [@hbtarget] 2
 +</code>
 +
 +  * Set Purple Diamond<code>
 +/worldmarker [@hbtarget] 3
 +</code>
 +
 +  * Set Red Cross<code>
 +/worldmarker [@hbtarget] 4
 +</code>
 +
 +  * Set Yellow Star<code>
 +/worldmarker [@hbtarget] 5
 +</code>
 +
 +  * Set Orange Circle<code>
 +/worldmarker [@hbtarget] 6
 +</code>
 +
 +  * Set Pale Blue Moon<code>
 +/worldmarker [@hbtarget] 7
 +</code>
 +
 +  * Set White Skull<code>
 +/worldmarker [@hbtarget] 8
 +</code>
 +
 +  * Clear Marker<code>
 +/clearworldmarker [@hbtarget] 0
 +</code>
 +
 +===== Class Macros =====
 +==== Priest Macro's ====
 +
 +  * Heal using top trinket<code>
 +#show Heal
 +/use 13
 +/cast [@hbtarget] Heal
 +</code>
 +
 +  * Heal using top trinket and suppress errors<code>
 +#show Heal
 +/hb se3
 +/hb se1
 +/use 13
 +/hb se2
 +/cast [@hbtarget] Heal
 +/hb se4
 +</code>
 +==== Paladin Macro's ====
 +
 +  * Holy Light and top trinket<code>
 +#show Holy Light+top trinket
 +/use 13
 +/cast [@hbtarget] Holy Light
 +</code>
 +
 +  * Flash of Light and bottom trinket<code>
 +#show Flash of Light
 +/use 14
 +/cast [@hbtarget] Flash of Light
 +</code>
 +
 +==== Druid Macro's ====
 +
 +  * Cast Regrowth on mouseover<code>
 +#showtooltip Regrowth
 +/cast [@mouseover,help] Regrowth
 +</code>
 +  * Cancel shapeshift form and cast Regrowth<code>
 +/cancelform
 +/cast [@hbtarget] Regrowth
 +</code>
 +
 +==== Tanking Macro's ====
 +
 +  * Taunt the target of a player<code>
 +#show Taunt
 +/cast [@hbtargettarget] Taunt
 +</code>
 +
 +  * Protect a player<code>
 +#show Blessing of Protection
 +/cast [@hbtarget] Blessing of Protection
 +</code>