• 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

Question - Using Holyshit to call burn

wackawacka

Active member
Joined
Jun 18, 2006
RedCents
972¢
Would this work?

holyshit10=/if (${Target.Named} && ${Melee.AggroMode} && ${Target.PctHPs}<95) /bc decepticons attack
 
It will call the burn every second (or less) until the mob it dead,not a good idea. Best thing to do it put your burn in your holy/downshits using {Target.Named} until it is integrated into kiss.

Not the best, but it works.
 
Try to qualify it with a radius check and a range health check. Will only call burn when mob is within 15 feet of tank and named is between 95-96 health

Rich (BB code):
holyshit10=/if (${Target.Named} && ${Melee.AggroMode} && ${Target.PctHPs}>94 && ${Target.PctHPs}<97 && ${Target.Distance}<=15) /bc decepticons attack

I will be adding a Named list to the kissassist_info.ini so you can list named to activate Burn by zone.
 
To prevent spam the whole fight you can try putting both a high and low end on the holyshit...

Rich (BB code):
holyshit10=/if (${Target.Named} && ${Melee.AggroMode} && ${Target.PctHPs}<95 && ${Target.PctHPs}>90) /bc decepticons attack

Other options would be to flip a BOOL you set up ahead of time. It'll only trigger it once then stop then you can set a downshit to reset the variable so it'll be ready next time a named pops.
 
Question - Using Holyshit to call burn

Users who are viewing this thread

Back
Top
Cart