craftmaster32
Active Member
I worked up a temporary fix for eq2bot used with a solo mage class and the casting while moving problem. This change may cause problems for other class types. To apply the fix replace your CastSpell function in eq2bot.iss with the one below.
function CastSpell(string spell, int spellid, bool castwhilemoving)
{
press -release ${forward}
press -release ${backward}
wait 30 !${Me.IsMoving}
Me.Ability[${spell}]:Use
wait 100 !${Me.CastingSpell}
return SUCCESS
}
function CastSpell(string spell, int spellid, bool castwhilemoving)
{
press -release ${forward}
press -release ${backward}
wait 30 !${Me.IsMoving}
Me.Ability[${spell}]:Use
wait 100 !${Me.CastingSpell}
return SUCCESS
}