Code:[B][SIZE=5]CHANGELOG[/SIZE][/B] [B][SIZE=3]v1.54[/SIZE][/B] - Some variables had wrong value
Nice, would it be possible to create a SVN update or are you thinking of putting it in the store at some point.
any chance you could PM me v1.4, after the toon uses Dalaran Hearth for me it just sits there in Dalaran, and never tries to go anywhere, most likely an issue with my profile, but your plugin was working amazingly for me before I updated to new version
My toon is a sub rogue, he jumps in the mobs with shadowstrike and sometimes get stuck over objects like rocks, he should just simply "jump down the rock", but he can't, silly bot...
The message that appears is something like this:
"Path distances request failed on map: Troll Raid, Location: <X, Y, Z>"
I tried your plugin but it seems it wasn't programmed to deal with this kind of problem. Could you add this kind of "stuck" problem in the plugin? Or gimme a idea on how to deal with this? It'd really help me...
View attachment 5424 2016-09-25 13.54.txtCould you attach a full log, so I can have a look at it?
KOM usually uses something like hearthstone as last resort; must be a very disadvantageous area your are questing in.
Hey, I understand the fact of not putting the file on the store; but will creatinga svn update for it be possible? I have a cmd that updates scripts via svn if I forget to check if some have updates 1 by 1.
whistle = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 141605);
dHS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 140192);
gHS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 110560);
HS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 6948);
whistle = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 141605);
dHS = null;
gHS = null;
HS = null;
I was really excited about this plugin since my Gatherbuddy profiles often got stuck. I tried it out, but it would just use Dalaran hs and then stay afk since the profile doesn't support flying from Dalaran. I have now tried the above method so it will only use normal HS to a place on the GB2 route. Hope this will work out wellLooks like there are a lot of navigation issues related to HB itself. You may want to post this in mesh errors thread
You could force KOM to use Flight Master's Whistle only
Change this
Code:whistle = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 141605); dHS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 140192); gHS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 110560); HS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 6948);
to something like this
Code:whistle = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 141605); dHS = null; gHS = null; HS = null;
whistle = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 141605);
dHS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 140192);
gHS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 110560);
HS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 6948);
whistle = null;
dHS = null;
gHS = null;
HS = StyxWoW.Me.BagItems.FirstOrDefault(x => x.Entry == 6948);
Instead of changing the code, couldn't we also just place every hearthstone besides the regular HS, in the bank of our characters or even just delete them? That way we are not messing with the functionality of the plugin?