- Joined
- Jun 12, 2015
- RedCents
- 58,244¢
I noticed my Aurora line of spells was not being detected as a group heal, which is it, i did little research and looked into it, and noticed why, because its a self spell its not being picked up when ka looks for group heals, and in the single heal detection sub its being detected as a single heal.
http://everquest.allakhazam.com/db/...vel=1&opt=And+Higher&expansion=&action=search
to test it out i added some code to the single heal section and group heal section just to see if that would work and it did, i am not an expert at this and it could probably be made smarter by people with more experience in coding this.
added this at the top of the single heal dectetion loop so it skips any of the aurora spells.
addded this at the top of the group heal detection loop so it would be detected and added as a group heal.
did some tests with /echo different heal varaibles and its being put in the right array now.
you guys can probably do it smarter than that, but for now that will work for me
http://everquest.allakhazam.com/db/...vel=1&opt=And+Higher&expansion=&action=search
to test it out i added some code to the single heal section and group heal section just to see if that would work and it did, i am not an expert at this and it could probably be made smarter by people with more experience in coding this.
Rich (BB code):
/if (${HealSpell.Find[Aurora of]}) /goto :NextSH
Rich (BB code):
/if (${HealSpell.Find[Aurora of]}) {
/varcalc GHCount ${GHCount}+1
/varset GroupHeal[${GHCount}] ${Heals[${i}]}
/vardata GHCond[${GHCount}] HealsCond[${i}]
/goto :NextGH
}
did some tests with /echo different heal varaibles and its being put in the right array now.
you guys can probably do it smarter than that, but for now that will work for me

