What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Crafted Legendary Buff Canceler

ZephyrMMO

Active Member
Joined
Mar 15, 2017
Messages
228
Crafted Legendary Buff Canceler

No GUI or Settings.
It just cancels the buff when you reach 4 stacks.

Credits

ZephyrMMO

MH66
for help explaining threads
pookthetook
for explaining IEnumerable

Changelog:

v1.0 Initial Release


Installation Instruction:

Unzip to your Plugin's folder in your Honorbuddy install directory.


Source for those who want it

Code:
using System;
using System.Collections.Generic;
using Styx;
using Styx.Plugins;
using Styx.WoWInternals;

namespace Zephyr.WispCancel
{
    public class WispCancel : HBPlugin
    {
        private readonly IEnumerable<int> _auraIds = new List<int>
        {
            241331, // The Sentinel's Eternal Refuge
            241846, // The Sentinel's Eternal Refuge 2
            241332, // Vigilance Perch
            242066 // Vigilance Perch 2
        };

        public override string Author => "ZephyrMMO";
        // Also MH66 + pookthetook for help with the plugin

        public override string Name => "CraftedLegCancel";

        public override Version Version { get; } = new Version(1, 0, 0);

        public override void Pulse()
        {
            foreach (int auraId in _auraIds)
            {
                WoWAura aura = StyxWoW.Me.GetAuraById(auraId);
                if (aura != null && aura.StackCount >= 4)
                    aura.TryCancelAura();
            }
        }
    }
}
 

Attachments

Last edited:
Great to see your coding is getting smarter and smarter. Keep up the good work! :)
 
bump, for a great solution to this. i went 100-110 without wearing these, and still was wearing ilvl 800 quest boots because of this, i asked all over and i thought it would be a common issue but almost no one even knew of it or had heard of the issue. THANK YOU! Bot kept wanting to stop and eat/drink everytime i got 5 stacks and went into wisp form, therefor sitting there for 60 seconds until it wore off -- needless to say i just took them off, bot still managed to go 98-110 in 7 hours played without them.
 
Thank you for your feedback @Syn-Ack, I am glad you like the plugin. Please let me know if you have any further needs as I am more then happy to address them
 
Not super relevant but I will no longer be releasing profiles to this forum due to NDA.

Sorry to inform the community. But this has not gained interest from the buddy team but has been bought out by a third party. I will not be releasing any further updates due to my NDA. (Non-disclosure agreements)
 
I never knew C# before this so why would I? I didn't try to sell this in the first place and I am not the only author on the newest Zingular so I can no longer can just release it for free because the bulk of the work is done by someone else because just as you said here. You had to spoonfeed me code to even build this. My C# is not good enough to accomplish that on my own.

So perhaps look at the big picture before attacking me.
 
Back
Top