Close
Showing results 1 to 7 of 7

Thread: Slave quest

  1. #1

    Default Slave quest

    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

  2. #2

    Default

    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

  3. #3

    Default

    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

  4. #4

  5. #5

    Default

    Yeah, Jamba. [Addon] Jamba - An assistant for multiboxers. 10th Update - 0.4b released. Read the docs so you know what you are getting or you will miss some cool features.
    "My dogs could roll heroics with how a lot of you play."
    - Fursphere 2010




  6. #6

    Default

    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.

  7. #7

    Default

    well then, lookie what I found:

    API QuestLogPushQuest

    Code:
    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

Similar Threads

  1. Slave has stopped relaying quest tasks - Please help!!
    By bionikchest in forum New Multi-Boxers & Support
    Replies: 3
    Last Post: 07-11-2009, 09:22 AM
  2. Jamba Quest,QuestGuru, Quest Helper
    By species6729 in forum Macros and Addons
    Replies: 6
    Last Post: 07-06-2009, 06:35 PM
  3. Carbonite Quest not showing quest
    By pinotnoir in forum Macros and Addons
    Replies: 2
    Last Post: 07-02-2009, 03:39 PM
  4. Slave Pens
    By schlange in forum General WoW Discussion
    Replies: 2
    Last Post: 05-11-2008, 11:21 AM
  5. Slave Pens
    By Nixi in forum General WoW Discussion
    Replies: 3
    Last Post: 02-19-2008, 07:34 AM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •