As I said, post a log.so what about autoequip? i try with several chars and autoequip dont work with any1. Previous autoequip work fine but now when you put it in HB it wont work for me.
I try also to put items from char to bags to see did autoequip try to take it
I read how to attach log but when i go to advanced i dont see Manage attachments?
- Regrowth is bugged, when we have no real target it doesn't work ...
- Casting ironbark on another player results on Ironbark on local player ;S
Code:var _target = ObjectManager.GetObjectsOfType<WoWUnit>().FirstOrDefault(a => a.Name == "INSERTNAMEHERE"); Log("CanCast: {0} Cast {1}", SpellManager.CanCast("Regrowth", _target), SpellManager.Cast("Regrowth", _target)) ;
Scenario 1# No Target, specify a random unit nearby -> Cancast returns true, Cast returns true, cast starts, cast casted on us.
Scenario 2# Targeting that unit, Running same script, both return true, cast starts, cast casted on that target.
This bugs our the entire routine >.<, when there's no target present..
No point when there are spells not working, can't do anything about it. You'll have to wait for new hb update.
PS: Cenarion Ward seems to be affected too...
under forum profile settings "My Settings" > General Settings
make sure Enhanced Attachment Uploading is on
Dunno if he already submitted this:
Dunno if he already submitted this:
I cannot reproduce your issue. Running this code in Stormwind, near a guard:Thanks, i skyped tony and chinajade. But a post on the thread might be smarter yeah
ClearLog();
var obj = ObjectManager.GetObjectsOfType<WoWUnit>().OrderBy(wu => wu.DistanceSqr).FirstOrDefault(wu => wu.Name == "Stormwind City Guard");
Log("{0}", obj.Distance);
Log("{0}", SpellManager.Cast("Regrowth", obj));
Thanks for the report, I will look into fixing this. To clarify, BoE epic bags would only get equipped if you had the setting enabled. I will probably change it to only equip BoE bags if they have 20 slots or under.
There's an "Equip BoE Epics", which if unchecked, would mean that AutoEquip wouldn't equip the BoE epic bags.There is no equip bag setting in character settings, only auto equip which i assume includes bags.
Side note, have been experiencing some extreme lag on occasion with this build.
screen when i press advanced:
http://i501.photobucket.com/albums/e...psfdf39d55.jpg
http://i501.photobucket.com/albums/e...ps5d60d2bc.jpg
I cannot reproduce your issue. Running this code in Stormwind, near a guard:
Code:ClearLog(); var obj = ObjectManager.GetObjectsOfType<WoWUnit>().OrderBy(wu => wu.DistanceSqr).FirstOrDefault(wu => wu.Name == "Stormwind City Guard"); Log("{0}", obj.Distance); Log("{0}", SpellManager.Cast("Regrowth", obj));
And it successfully manages to cast Regrowth on the guard, regardless of my current target.