Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

False positive on Voidwalker quest

Featured Replies

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...

  • Author

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.

  • Author

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();

 

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.