Jump to content

False positive on Voidwalker quest


Recommended Posts

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 post
Share on other sites

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 post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...