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

[Plugin / Ach] Noble Gardener

Make it use and equip the Egg Basked (the offhand) on all cooldowns.
 
You want speed boost? You can has speed boost!!!

This mod will use the egg basket offhand to make you move faster...

I haven't done much coding with this engine so I haven't figure out how to make it worth cross-language, edit line 92 if you dont have an english client.
 

Attachments

Oh well, I fixed it myself eventually :-"

Code:
                if (StyxWoW.Me.Inventory.Equipped.OffHand != null && (StyxWoW.Me.Inventory.Equipped.OffHand.Name == "Egg Basket" && StyxWoW.Me.Inventory.Equipped.OffHand.Cooldown <= 0))
                {
                    Logging.Write("EGG RUSH!");
                    StyxWoW.Me.Inventory.Equipped.OffHand.Use();
                    return;
                }
 
Your code makes much more sense then the way I did it, -_-
 
Oh well, I fixed it myself eventually :-"

Code:
                if (StyxWoW.Me.Inventory.Equipped.OffHand != null && (StyxWoW.Me.Inventory.Equipped.OffHand.Name == "Egg Basket" && StyxWoW.Me.Inventory.Equipped.OffHand.Cooldown <= 0))
                {
                    Logging.Write("EGG RUSH!");
                    StyxWoW.Me.Inventory.Equipped.OffHand.Use();
                    return;
                }

Would be perfect if you use item entry istead of the name, so it isn't localized and working in all languages ;)
 
I downloaded the version with speedboost, and it doesn't seem to be using it..
But this thing is crazy good either way..

Edit: Actually, it didn't work with the original basket I had, but once I completed the daily and it gave me a new basket, it started working.
 
Last edited:
I downloaded the version with speedboost, and it doesn't seem to be using it..
But this thing is crazy good either way..

Strange, I tested it and it worked...
I think there are two different easter baskets, one you get from accepting the quest,and one from handing the quest in.
 
Strange, I tested it and it worked...
I think there are two different easter baskets, one you get from accepting the quest,and one from handing the quest in.

Yeah. I edited my post. I think it works with the one after you hand it in, but not before.
 
Yeah. I edited my post. I think it works with the one after you hand it in, but not before.

Egg Basket - Item - World of Warcraft (provided to do the quest)
Egg Basket - Item - World of Warcraft (quest reward)

So the code should be changed to

Code:
if (StyxWoW.Me.Inventory.Equipped.OffHand != null && ((StyxWoW.Me.Inventory.Equipped.OffHand.ItemInfo.Id == 45067 || StyxWoW.Me.Inventory.Equipped.OffHand.ItemInfo.Id == 44802) && StyxWoW.Me.Inventory.Equipped.OffHand.Cooldown <= 0))
So it will work with both items ;)



EDIT:
Attached the file wich is working nice for me now.
 

Attachments

Last edited:
Many thanks for the feedback!

And special thanks to Kickazz006, iggi66,znuffie and mastahg for the improvements!!
I love you guys! :o

I was too tired to continue.. :rolleyes:
I will now revise the code.
 
Last edited:
Many thanks for the feedback!

And special thanks to Kickazz006, iggi66 and znuffie for the improvements!!
I love you guys! :o

I was too tired to continue.. :rolleyes:
I will now revise the code.


Thank you for starting this ;) Keep up the good work on this.
 
yes this plugin was pwnface. i got eggs so fast that sometimes i couldn't click them in my bags fast enough (before the open stuff was added) :D
 
Many thanks for the feedback!

And special thanks to Kickazz006, iggi66 and znuffie for the improvements!!
I love you guys! :o


Damn, that's harsh bro :(. My feelings are hurt.
 
Back
Top