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.
if (StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 72145) != null || StyxWoW.Me.FreeBagSlots < 3)
{
Mail();
[B] return;[/B]
}
Will do thanks alot![]()
Amazing plug-in. Could you make it use the egg basket ID: 45067 on cooldown? It would help a lot thanks man.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.
var basket = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 45067);
if (basket != null && basket.CooldownTimeLeft <= new TimeSpan(0,0,0,0))
basket.Use();
This is great man, is there any way to make it stay in bunny form?
It draws a lot less attention with the movement.
var bunnyAura = StyxWoW.Me.ActiveAuras.FirstOrDefault(x => x.Value.SpellId == 61734).Value;
if (bunnyAura != null)
bunnyAura.TryCancelAura();
Thanks bro!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();
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();
}
Remove this:
Code:var bunnyAura = StyxWoW.Me.ActiveAuras.FirstOrDefault(x => x.Value.SpellId == 61734).Value; if (bunnyAura != null) bunnyAura.TryCancelAura();