triciamc 2 Posted April 22, 2018 Share Posted April 22, 2018 I'm trying to make a quester profile for the last part of Voidwalker chain - quest called The Binding. Unfortunately the server has a bug, upon the quest pickup it is already complete but it's only a visual bug. It returns false positive on the quester profile resulting in bot thinking the objective is already complete and its time to move to another step. I found out that reloging fixes the visual bug but I have no idea how could I automate the relog in profile (what code). Anyone knows how can I force a relog with a code or maybe other solution to the problem ? PS. Reloading UI does not fix the problem EDIT !!!!!!!: Abandoning and repicking the quest fixes it aswell but I dont know how to code it. If I do : wManager.Wow.Helpers.Quest.AbandonLastQuest(); The quest is added to the list of complete quests list and therefore the bot doesnt repick the quest on my command. hmm... Link to comment https://wrobot.eu/forums/topic/9177-false-positive-on-voidwalker-quest/ Share on other sites More sharing options...
triciamc 2 Posted April 22, 2018 Author Share Posted April 22, 2018 tried following codes separated with appropriate WAIT timing: Quote wManager.Wow.Helpers.Quest.AbandonLastQuest(); wManager.Wow.Helpers.FinishedQuestsSettings.CurrentSetting.FinishedQuest.Remove(1689); Leave this thread for possible future questions. Matenia 1 Link to comment https://wrobot.eu/forums/topic/9177-false-positive-on-voidwalker-quest/#findComment-42648 Share on other sites More sharing options...
triciamc 2 Posted April 24, 2018 Author Share Posted April 24, 2018 Fix from previous post turned out very inconsistent. Even though the voidwalker quest is last taken, the bot randomly abandons wrong quest. I tried out the following LUA code by @Droidz Quote local questId = 1689; for i=1,GetNumQuestLogEntries() do local _, _, _, _, _, _, _, id = GetQuestLogTitle(i); if id == questId then SelectQuestLogEntry(i); SetAbandonQuest(); AbandonQuest(); end end It did NOT work, nothing happens. IF ANYONE KNOWS WHY THIS DOESNT WORK, PLEASE DO HELP ! I tried out following LUA code instead, I need to see how consistent it is. It might be perfect becouse I already have quests in Quest Log I dont want to abandon. : Quote SelectQuestLogEntry(questIndex); SetAbandonQuest(); AbandonQuest(); Link to comment https://wrobot.eu/forums/topic/9177-false-positive-on-voidwalker-quest/#findComment-42682 Share on other sites More sharing options...
Matenia 628 Posted April 24, 2018 Share Posted April 24, 2018 There is no questId in the GetQuestLogTitle for vanilla. I recommend using the history function on documentation websites: https://wow.gamepedia.com/index.php?title=API_GetQuestLogTitle&oldid=232279 Link to comment https://wrobot.eu/forums/topic/9177-false-positive-on-voidwalker-quest/#findComment-42683 Share on other sites More sharing options...
triciamc 2 Posted April 24, 2018 Author Share Posted April 24, 2018 So I guess same goes for: GetQuestLogIndexByID(questID) ? Where can i see the funcion history on documentation ? Is it this for example ? https://wow.gamepedia.com/index.php?title=API_AbandonQuest&action=history Link to comment https://wrobot.eu/forums/topic/9177-false-positive-on-voidwalker-quest/#findComment-42685 Share on other sites More sharing options...
camelot10 155 Posted April 24, 2018 Share Posted April 24, 2018 (old joke about documentation) Link to comment https://wrobot.eu/forums/topic/9177-false-positive-on-voidwalker-quest/#findComment-42688 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now