• 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 - Bard Holy (using mq2twist)

Joined
Oct 21, 2013
RedCents
517¢
Okay guru's, looking for a some feedback to see if there is a cleaner way to write this holy:

Rich (BB code):
/if (${Me.SpellReady[Requiem of Time]} && !${Target.Buff[Requiem of Time].ID} && ${Target.PctHPs}>40) /multiline ; /twist once 1 ; /timed 30 /twist off ; /twist reset

I have changed it to the above code from this code:
Rich (BB code):
/if (${Me.SpellReady[Requiem of Time]} && !${Target.Buff[Requiem of Time].ID} && ${Target.PctHPs}>40) /multiline ; /cast "Requiem of Time" ; /delay 6

I believe the second holy has been causing my bard lockups and just wanted to ensure that there isn't a better way to write the first holy.
 
I cant log in game to check, but should just be:
Rich (BB code):
/if (!${Me.GemTimer[Requiem of Time]} && !${Target.Slowed.Duration} && ${Target.PctHPs}>40 && ${Twist.Current}!=${Me.Gem[Requiem of Time]}) /twist once ${Me.Gem[Requiem of Time]}
So that will check if the mob is slowed at all, if not then see if you are already trying to cast slow, and if not, see if it is ready, and if ready try to cast it. Twist will start/stop on its own using /twist once.
 
Pete,

Appears to be working! I see some things I have questions about, but I think it is related to the mq2twist plugin. Not sure who maintains it, but I will check the MQ2 site first before posting here.

- - - Updated - - -

Thanks you again Pete, this is the working holy for my needs:
Rich (BB code):
/if (!${Me.GemTimer[Requiem of Time]} && !${Target.Slowed.Duration} && ${Target.PctHPs}>40 && ${Twist.Current}!=${Me.Gem[Requiem of Time]}) /multiline ; /twist once ${Me.Gem[Requiem of Time]} ; /delay 15

Now an explanation why I added the /delay:
This holy would fire off once my bard attacked, but would stop then start my melee twist, stop the melee twist and then fire the holy again. I would see the KA message of melee twist and it dawned on me to add the delay so the holy would complete then let the KA melee twist take over.

I am maxed AAs so any other bard wanting to use this might need to increase the delay so that the holy can complete.

Now to update another thread I have to close out an issue that was caused by this, unknown to me until last night.
 
Question - Bard Holy (using mq2twist)

Users who are viewing this thread

Back
Top
Cart