View Full Version : Does anyone know of a working alternative for ConfirmAcceptQuest()?
It seems that the ConfimAcceptQuest function that is used in the default accept macro, no longer works. Anyone know any alternatives? (wowwiki still mentions this function as the accept escort quest function)
kllrwlf
05-08-2008, 04:19 PM
Also tagging this thread... I don't recall ConfirmAcceptQuest() to ever work me either.
I just ended up clicking on it manually... which sucks, because I have to do it everyday for the escort quest in Skettis.
This is my accept macro and it works fine.
/script AcceptGroup();
/script AcceptQuest();
/script AcceptTrade();
/script RetrieveCorpse();
/script AcceptResurrect();
/script RepopMe();
/script ConfirmAcceptQuest();
/script StaticPopup_Hide("PARTY_INVITE");
I'm using the same macro, but it doesn't accept escort quests. ConfirmAcceptQuest should do that, but it doesn't.
Bovidae
05-08-2008, 04:44 PM
I will try this tonight, I have to go save the chicken from the Yeti cave.
Khayos
05-08-2008, 05:05 PM
Im not entirely sure however look @ IdQuestAutomaton.
/script RepopMe();
Is a bad idea for Shaman players.
I found this out the hard way last night :) I'll remove it.
Is a bad idea for Shaman players. If you hit it by accident, it ruins your chance of using reincarnate. I supposed the same would be true for soulstoned players.Not just for reincarnation. You basically don't want it to release your corpse as long as one of your chars can still resurrect the others or your resurrect macro's won't be able to target the remaining dead player after you accept the first res. Its better to add a key modifier that prevents RepopMe from being called with every accept.
Any solution for the escort quest accept problem?
Falkor
05-09-2008, 08:36 AM
See my signature link for a updated version of this script with a npc macro built in!
I've tried out your macro Falkor, but it doesn't seem to do what I need it to do. So I've spent some time digging into the issue myself. It seems that the "accept all" macro does accept escort quests that are opened by other players, it simply doesn't close the corresponding dialog. Of course these dialogs aren't listed anywhere, so I had to write some code to find the window that I needed to close.
The following macro lists all the names of all the static popups:
/script for k,v in pairs(StaticPopupDialogs) do ChatFrame1:AddMessage(k); end
After searching through the popups, I found that the "QUEST_ACCEPT" popup displays the accept escort text. I've updated the accept all macro to make it close this popup.
http://www.dual-boxing.com/wiki/index.php/Macro:Accept_All
vBulletin® v4.2.2, Copyright ©2000-2025, Jelsoft Enterprises Ltd.