• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Problem - Paladin Aurora line of group heal spell

kaen01

I am not a complete idiot!..some parts are missing
Creator
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.

Rich (BB code):
		/if (${HealSpell.Find[Aurora of]}) /goto :NextSH
added this at the top of the single heal dectetion loop so it skips any of the aurora spells.

Rich (BB code):
		/if (${HealSpell.Find[Aurora of]}) {
			/varcalc GHCount ${GHCount}+1
            /varset GroupHeal[${GHCount}] ${Heals[${i}]}
            /vardata GHCond[${GHCount}] HealsCond[${i}]
            /goto :NextGH
        }
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
 
Problem - Paladin Aurora line of group heal spell

Users who are viewing this thread

Back
Top
Cart