Hi there! I'm using your plugin for Noggenfogger Elixir's, and it IS working, however, there is a small issue.
The Noggenfogger Elixir has 3 different possible effects, which cause 3 different possible buffs.
I am looking to use it for the particular buff which makes you smaller. I want to use noggenfogger elixir's untill i have obtained this buff.
Unfortunately, the buff's all have the same name , so this..
Code:
if (!intMe.ActiveAuras.ContainsKey(buff))
Will be satisfied with any of the 3 buffs called "Noggenfogger Elixir" and continue on with it's day.
Fortunately, after that it'll try to mount, and that will cancel the other 2 aura's i don't want, but doesnt affect the small buff, so it will just keep doing this untill i get the little buff

But it's really jumpy and I don't like that, I'd rather the bot didn't continue untill it has the buff I want!!
I found the spellID for the buff i want, it is 16589. Is there any way you can change ..
Code:
if (!intMe.ActiveAuras.ContainsKey(buff))
To something like...
Code:
if (!intMe.ActiveAuras.ContainsKey(16589))
(I tried this, it didn't work)
That would fix my issues! I don't know a command for this though. Help please! lol
/////Edit
I found one more thing that I need help with....
This doesnt seem to register with druid's flight form. Can you give me something that can? thanks!!