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!

[H / A] NobleGardner - Ultimate Egg Hunter

Like I said Well done running it atm
So far it runs great but also misses eggs sometimes because it starts looting them and then moves to the next egg while the prev looting isnt done.

This is the old version
Eggs Looted: 657
Eggs Per Hour: 765.657470703125

New Version 1.1

Eggs Looted: 86
Eggs Per Hour: 1059.85400390625
 
Last edited:
Like I said Well done running it atm
So far it runs great but also misses eggs sometimes because it starts looting them and then moves to the next egg while the prev looting isnt done.

Should be fixed in 1.1
 
Found another bug when the baggs are full it goes crazy left right left right it wants to go to mail box but also wants to grab eggs
 
Code:
            if (StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 72145) != null || StyxWoW.Me.FreeBagSlots < 3)
            {
                Mail();
[B]                    return;[/B]
            }

Change this code. Or I will update it and you can download that. I am US so my wow is down and can't test =(

Edit: Release I just posted has that change.
 
Cholcolate spell id =44791

Orc starting zone
noblegarden egg= 44818
Blossoming Branch = 44792
Spring Flowers = 45073
Spring robes = 44800
White tux shirt =6833
black tux pants =6835
Elegant dress = 19028
Spring circlet = 44803
spring rabbit foot = 44794
mystical spring bouqet = 116258
Swift Springstrider = 72145
Black spring circlet = 74282
pink spring circlet = 74283
Poorly-painted egg = 116357
Intricately-painted egg = 116358
Magnificently-painted egg = 116359
 
Last edited:
I am updating it again. It will now buy mounts and send them to your alt to sell. It is 100% automated now.
 
Amazing plug-in. Could you make it use the egg basket ID: 45067 on cooldown? It would help a lot thanks man.

Just add this to the pulse:
Code:
            var basket = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 45067);
            if (basket != null && basket.CooldownTimeLeft <= new TimeSpan(0,0,0,0))
                basket.Use();
 
Amazing Plugin!
One Question: i dont know my login name/pw for the buddy store and so i cant download the do nothing botbase and routine :/
can i download it anywhere else? :D cause im running around looting everything and this seems a bit bottish :D hope u can help me <3
 
This is great man, is there any way to make it stay in bunny form?
It draws a lot less attention with the movement.
 
This is great man, is there any way to make it stay in bunny form?
It draws a lot less attention with the movement.

Remove this:
Code:
            var bunnyAura = StyxWoW.Me.ActiveAuras.FirstOrDefault(x => x.Value.SpellId == 61734).Value;
            if (bunnyAura != null)
                bunnyAura.TryCancelAura();
 
Just add this to the pulse:
Code:
            var basket = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 45067);
            if (basket != null && basket.CooldownTimeLeft <= new TimeSpan(0,0,0,0))
                basket.Use();
Thanks bro!

EDIT: After trying to put it in the code it would spam "you must equip that item to use it" when not equipped, however when it is equipped it doesn't seem to do anything, :(

EDIT2: figured it out:

Code:
                if (StyxWoW.Me.Inventory.Equipped.OffHand != null && ((StyxWoW.Me.Inventory.Equipped.OffHand.ItemInfo.Id == 45067) && StyxWoW.Me.Inventory.Equipped.OffHand.Cooldown <= 0))
                {
                    StyxWoW.Me.Inventory.Equipped.OffHand.Use();
                }

Awesome plug-in Phelon!
 
Last edited:
Back
Top