Im new to this so dont flame me to bad...
Im trying to find a code where if a spell fizzles it will re cast it.
2nd) is there a url where u can make donations?
Moderator: MacroQuest Developers

Code: Select all
#event Fizzle "Your Spell Fizzles"
Sub Event_Fizzle
/return ${Bool[True]}
Sub Main
:FizzleLoop
/cast "Strike of Solusek"
/delay 5
/doevents Fizzle
/if (${Macro.Return}) /goto :FizzleLoop
/return Code: Select all
/call Cast "Strike of Solusek"
Code: Select all
Sub Main
/declare CurrentMobID int local
/assist <person to assist goes here>
| because Assist pulls info from the server, you might want to have a delay long enough for you to finish aquiring the target
/delay 5
/varset CurrentMobID ${Target.ID}
:YetAnotherLoop
|Do some stuff here
/if (${Spawn[${CurrentMobID}].Type.Equal["NPC"]}) /goto :YetAnotherLoop
/return