RekkasGit / E3Next

10 stars 19 forks source link

Add BlockedPetBuff #227

Closed Lyricalpanda closed 3 months ago

Lyricalpanda commented 4 months ago

Have shared logic on pets from charmed and non charmed pets

blingeorkl commented 3 months ago

the clicking adds issues if you're on the toon and hit keys like Alt when it's trying to click off buffs, so MQ.Cmd($"/removebuff -pet {buff.SpellName}"); is a better way of executing this

Lyricalpanda commented 3 months ago

the clicking adds issues if you're on the toon and hit keys like Alt when it's trying to click off buffs, so MQ.Cmd($"/removebuff -pet {buff.SpellName}"); is a better way of executing this

Rekka led us astray

RekkasGit commented 3 months ago

I agree lets use /removebuff -pet, and i will merge to master

Lyricalpanda commented 3 months ago

Done

blingeorkl commented 3 months ago

I had something similar to what you have posted, and it was giving me the "I do not have *** that is configured in the bot ini" so I had to add this in BaseSettings.cs under public static void CheckFor

if (sectionkey.Equals("Pets", StringComparison.OrdinalIgnoreCase) && keyData.KeyName.Equals("Blocked Pet Buff", StringComparison.OrdinalIgnoreCase)) return;