My Wizard Macros [MQ2Data]
Posted: Thu Apr 29, 2004 4:24 pm
Mana Robe Macro
Very simple nuke macro. Objective: Nuke, concussion, cconcussion repeat
Does not deal with fizzles or interuptions. Must have elemental wizard legs for this system to work, will not work with out them.
Both have been tested numerous times, and do exactly what i want them to do :) hope others can find a use for them,
Code: Select all
|ManaRobe.Mac by Yalp
|Useage: This Macro requires Wand if Impenetrable Force from time,
|but is easily adaptable to work with wizard epic
|
|Thanks to Smash for the help converting it.
#Turbo
Sub Main
:loop
/if (${Me.PctMana}==100) /endmacro
/if ( ${Bool[${Me.Buff["Force Shield"]}]}==FALSE ) /cast item "Wand of Impenetrable Force"
:runewait
/if (${Me.Casting.ID}) /goto :runewait
/cast item "Mana Robe"
:robewait
/if (${Me.Casting.ID}) /goto :robewait
/goto :loop
/returnDoes not deal with fizzles or interuptions. Must have elemental wizard legs for this system to work, will not work with out them.
Code: Select all
|Nuke.Mac by Yalp
|
|Useage: Requires elemental wizard leggings, Put the nuke you want to use
|in the first slot. Nukes then casts concussion twice then nukes again.
|Note: Very Crude macro, does not deal with fizzles or interuptions.
|
|Thanks to Smash for the help converting it.
#turbo
Sub Main
:Start
/if ( ${String[${Target.ID}].Equal[NULL]} ) /endmacro
/cast 1
:wait1
/if ( ${String[${Target.ID}].Equal[NULL]} ) /endmacro
/delay 5
/if (${Me.Casting.ID}) /goto :wait1
/cast item "Maelin's Leggings of Lore"
:wait2
/if ( ${String[${Target.ID}].Equal[NULL]} ) /endmacro
/delay 5
/if (${Me.Casting.ID}) /goto :wait2
/cast item "Maelin's Leggings of Lore"
:wait3
/if ( ${String[${Target.ID}].Equal[NULL]} ) /endmacro
/delay 5
/if (${Me.Casting.ID}) /goto :wait3
/goto :start
/return