PDA

View Full Version : Slave quest



Boogieman
01-01-2009, 05:31 PM
Ive looked through alot of stuff and cant find what im lookin for maybe someone can help me or point me in the right direction to help myself


what i want is an addon or macro (i would prefer a macro) that will try to share all the quests in my log on the main to the slaves i have an addon that will auto accept shares
so id like to just have a macro to trigger so i dont have to open the questlog and search for the new quest to share


If someone can help ty in advance

btw82
01-01-2009, 05:43 PM
Macro for every toon. You have to share the quests manually with your main and press then the macro with the toons to accept it for them.

/script AcceptGroup();
/script AcceptQuest();
/script AcceptTrade();
/script RetrieveCorpse();

please look in the stickys above

Boogieman
01-01-2009, 06:04 PM
i got that thanks what im lookin for is somethin to auto share the quests from the main so i dont have to search the questlog for the new quest to share

Golle
01-01-2009, 08:46 PM
Try Jamba.

Coltimar
01-02-2009, 08:52 AM
Yeah, Jamba. [Addon] Jamba - An assistant for multiboxers. 10th Update - 0.4b released. ('http://www.dual-boxing.com/forums/index.php?page=Thread&threadID=12887') Read the docs so you know what you are getting or you will miss some cool features.

Tynk
01-02-2009, 09:32 AM
Jamba will not do what you are asking, neither will any other addon or macro that I am aware of.
The way I do it is, I use Quest Guru for my quest log, makes it double pane, gives a quest history, a couple other features and gives the number of other players on the quest right next to it. This way all you have to do is look for any quest that does not have 4 other party members on it. (assuming you are 5 boxing and grouped up)
I know this is not what you are looking for, and I may just dig into an "Share All Quests" option some where as it is a good idea.

Tynk
01-02-2009, 09:36 AM
well then, lookie what I found:

API QuestLogPushQuest ('http://www.wowwiki.com/API_QuestLogPushQuest')


local i = 0;
while (GetQuestLogTitle(i+1) ~= nil) do
i = i + 1;
local title, level, tag, header = GetQuestLogTitle(i);
if (not header) then
SelectQuestLogEntry(i);
if (GetQuestLogPushable()) then
QuestLogPushQuest();
DEFAULT_CHAT_FRAME:AddMessage(string.format("Attempting to share %s [%d] with your group...", title, level));
return;
end
end
end