• 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 - Aureat's Bane

dobey1

Well-known member
Joined
Dec 15, 2020
RedCents
310¢
I am using this code for the cure, but it seems after I get the buff and it fades mq2 thinks I have the debuff again, is there a better way to do this?

Code:
    /if (${Me.Song[Curse of Subjugation I].ID} || ${Me.Song[Curse of Subjugation II].ID} || ${Me.Song[Curse of Subjugation III].ID}) {
        /if (${Me.AltAbilityReady[15074]}) {
            /echo Detected a Curse of Subjugation debuff - Using Aureate's Bane
            /alt act 15074
            /delay 2s
        }
    }
 
I am using this code for the cure, but it seems after I get the buff and it fades mq2 thinks I have the debuff again, is there a better way to do this?

Code:
    /if (${Me.Song[Curse of Subjugation I].ID} || ${Me.Song[Curse of Subjugation II].ID} || ${Me.Song[Curse of Subjugation III].ID}) {
        /if (${Me.AltAbilityReady[15074]}) {
            /echo Detected a Curse of Subjugation debuff - Using Aureate's Bane
            /alt act 15074
            /delay 2s
        }
    }
EQ has a bug with it.

You could additionally check that you don't have the buff
 
The Final version if anyone else is interested, works great for me, just change the name of the level of the aa you have:

Code:
    /if (${Me.Song[Lesser Curse of Subjugation I].ID} || ${Me.Song[Lesser Curse of Subjugation II].ID} || ${Me.Song[Lesser Curse of Subjugation III].ID} || ${Me.Song[Curse of Subjugation I].ID} || ${Me.Song[Curse of Subjugation II].ID} || ${Me.Song[Curse of Subjugation III].ID} || ${Me.Song[Ultimate Curse of Subjugation I].ID} || ${Me.Song[Ultimate Curse of Subjugation II].ID} || ${Me.Song[Ultimate Curse of Subjugation III].ID}) {
        /if (!${Me.Song[Aureate's Bane I].ID} && ${Me.AltAbilityReady[15074]}) {
            /echo Detected a Curse of Subjugation debuff - Using Aureate's Bane
            /alt act 15074
            /delay 2s
        }
    }
 
Problem - Aureat's Bane

Users who are viewing this thread

Back
Top
Cart