Currently using this plugin for my Vrykul Drinking Horn, to look big and mean all the time. Thanks for this. + rep.
Hello i have little problem tomorow night i testing this profile with using potion of treasure finding but have small problem all work GREAT but when i dont have potion in inventory (i had only 3) and when i use all 3 potions bot STOP and wrote [Singular] Casting Arcane Brilliance on Myself>>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... [Singular] Casting Arcane Brilliance on Myself >>No longer have Buff: Potion of Treasure Finding... its bad is here any way how to fix it anything like when item isnt so dont start buff. Thx for reply
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.... Code: !intMe.Mounted This doesnt seem to register with druid's flight form. Can you give me something that can? thanks!!
How are people modifying this? I'd love to set it up so it works with the Flask of the North, but I'm rubbish at code. (associated 3 buffs are all called Flask of the North, I think - Intellect, Agility, Strength.) Do I just need to replace "Flask of Enhancement" with "Flask of the North" in plugin, and the names "Enhanced Agility/Intellect/Strength" with "Flask of the North" or something particular to each of the spells? Thank you! ^_^ ETA Tried doing this and it seems to be workingjust fine. Great plugin!
I followed your instruction on adding my own Elixier ,but i keep getting this in log >>No longer have Buff: Elixir of Shadows
can somebody post his version for the Savory Deviate Delight please? here is mine, but it just keeps using the item like crazy... doesnt seem to recognize the buff :S please look into it somebody Download: View attachment Elixir.cs
Try changing if (!intMe.ActiveAuras.ContainsKey(buffone) || !intMe.ActiveAuras.ContainsKey(bufftwo)) to if (!intMe.ActiveAuras.ContainsKey(buffone) && !intMe.ActiveAuras.ContainsKey(bufftwo)) It does recognize you as having the buff, but you're telling it to try and get both at the same time
Just having a question, if i want it to drink two kinds of Elixir, where should i add the second one?