KrazyDragon
New Member
- Joined
- Mar 1, 2017
- Messages
- 2
I've experienced the similar problem after 3.5 release.
My very simple profile was running to NPC and turning in all the items I've made for a specific leve (thanks, ExMatt: saved me a lot of stupid clicks!) But it stopped working in 3.5: quest no longer picked up. After manual pickup one turn-in was ok, but then again pickup is needed.
Investigation shown that guildLeveWindow.AcceptLeve(leveId) in ExPickupGuildLeveTag.cs is no longer working.
AcceptLeve is in Plugins\ExBuddy\Windows\GuildLeve.cs on my box.
I've edited this AcceptLeve function there this way:
That helped. Now works with 3.5. Do not ask me why: I've just looked at some other implementation and noticed the difference which I can't explain myself.Code:public SendActionResult AcceptLeve(uint guildLeveId) { // return TrySendAction(2, 3, 2, 4, guildLeveId); return TrySendAction(2, 3, 3, 4, guildLeveId); }
Do not forget to restart Rebornbuddy after the edit.
Hey there!
Someone else copied your fix and posted on the "[DoH] Leve Turn-In Profile for levels 15-50" post (https://www.thebuddyforum.com/rebor...93944-doh-leve-profiles-levels-15-50-a-2.html).
However, as of patch 3.55a - I'm still having issues with the profile accepting Levequests. As described in previous comments, it goes to the levemete, opens the dialog, DOESNT accept a quest, then teleports and goes to the "would-be" quest turn-in location.
I've downloaded the most recent version from GitHub - Ganom/DoHPowerleveling: OrderBot - DoH Leve Turn-Ins , which includes your updated string of code in the GuildLeve.cs file, however it did not resolve my issue.
Here is a GIF of it happening: Gyazo - 0d2f2921d3298ae3ede5e7b4efe9cc07.gif - As you can see, there are no new quests in my quest log.
Here is the log from the bot: http://puu.sh/uoPMA/22b693e03c.png
Let me know if you have any input, or need any more information from me.
Thanks~!