Just started using auto cleric on my 65 cleric and have a few questions. One my cleric always defaults to targeting my bst who is the 5th member of my group. My tank is #1, but he never targets him unless he is healing then switches back to the bst. Second how do I change the percent at which the cleric will complete heal? Would it be in the section listed below?
Rich (BB code):
Sub ConfigHeal/if (${Select[${Zone.ID},795,796]}==0 && !${Raid.Members}) {
/if (${Me.XTarget}>2||${Me.XTarget[1].Named}) {
/if (${healpoint}!=90) {
/varset healpoint 90
/varset grouphealpoint 75
/varset bighealpoint 60
}
} else /if (${Me.XTarget[1].Level}>=${Me.Level}) {
/if (${healpoint}!=85) {
/varset healpoint 85
/varset grouphealpoint 75
/varset bighealpoint 60
}
} else /if (${Me.XTarget[1].Level}>=${Math.Calc[${Me.Level}-5]}) {
/if (${healpoint}!=80) {
/varset healpoint 80
/varset grouphealpoint 75
/varset bighealpoint 60
}
} else {
/if (${healpoint}!=70) {
/varset healpoint 70
/varset grouphealpoint 75
/varset bighealpoint 60
}
}
} else /if (${healpoint}!=${tbmhealpoint}&& !${Raid.Members}) {
/varset healpoint ${tbmhealpoint}
/varcalc grouphealpoint ${tbmhealpoint}-5
/varcalc bighealpoint ${tbmhealpoint}-10
} else /if (${healpoint}!=${raidhealpoint}&& ${Raid.Members}) {
/varset healpoint ${raidhealpoint}
/varcalc grouphealpoint ${raidhealpoint}-5
/varcalc bighealpoint ${raidhealpoint}-10
}

