Multicharacter
Senior Member
I found running this on my mage cuts down on deaths due to AoE's killing the Malice adds in the Bhaly Adan fight (Disease - The Source):
Code:
function main()
{
do
{
if ${Actor[Query, Name =- "a Primordial" && Health < "26"](exists)}
{
echo Dispell
do
{
waitframe
}
while !${Me.Ability["Absorb Magic"].IsReady}
RI_Obj_CB:Pause[1]
wait 10
tar ${Actor[Query, Name =- "Malice" && Health < "25"].ID}
wait 10
EQ2Execute /useability Absorb Magic
wait 40
relay all "tar ${Target.ID}"
RI_Obj_CB:Pause[0]
}
}
while ${Actor[Bhaly](exists)}
}