in the fury class routine (under eq2bot/class routines directory) there is an area "function checkheals" you will find this information in it:
if (${MainTankExists})
{
if ${Actor[${MainTankID}].Health}<90
{
if ${Me.ID}==${MainTankID}
call HealMe
else
call HealMT ${MainTankID} ${MainTankInGroup}
}
;Check My health after MT
if ${Me.ID}!=${MainTankID} && ${Me.ToActor.Health}<50
call HealMe
}
else
{
if ${Me.ToActor.Health}<90
call HealMe
}
This information will be different if you dont have the newest version of eq2bot, which is availiable off svn.
This line here
if ${Actor[${MainTankID}].Health}<90
specifies at what percentage (less than 90 in this case) in which a heal wil be called and cast.
You can change it to any value you want but it is good to leave it near the top end as furies deal in Heals over time and they require time to work thier magic
GL,
Shiv