Close
Page 109 of 203 FirstFirst ... 9 59 99 107 108 109 110 111 119 159 ... LastLast
Showing results 1081 to 1090 of 2112

Hybrid View

  1. #1

    Default

    Haha Thanks for the spamming the invite key tip sounds crazy but it works!
    Spuda, Spudb, Spudc, Spude, Spudf Shaman
    Emerald Dream - Alliance EU

  2. #2

    Default

    its a bug in 3.1, hiding the party popup right after doing an AcceptGroup() causes you to decline the group invite. For now here is my temp fix until Jafula comes back, edit the file Jamba\Modules\JambaGroup.lua, go down to around line 530 and comment out the hidePopup = true; line. it will look like this:

    -- Accept the group invite if allowed.
    if acceptInvite then
    AcceptGroup()
    --hidePopup = true;
    else
    -- Otherwise decline the invite if permitted.
    if autoDecline then
    DeclineGroup()
    hidePopup = true;
    end
    end

    just add -- to the line after AcceptGroup() ==> --hidePopup = true;

    You will still have the ugly party invite group on your screen, you can do the regular macro to accept-all to get rid of it or it'll go away after a few mins. Unless Blizzard fixes this bug the only real fix is to fire an event like 3 secs later to hide the window, instead of doing it a few lines down.

  3. #3

    Default

    This is a temporary fix for Jamba 0.4d (the version name is still 0.4d, but it is a changed addon!):
    http://www.wow-multiboxing.com/files/Jamba.zip

    Changes:
    - changed TOC version so it doesn't get marked as an out-of-date macro
    - diggla's temporary fix that hides the group invite popup as it should

    [edit] Updated!

  4. #4

    Default

    I didn't have time to do a lot of testing, but it seems some other things are broken. For instance, the special Jamba "Abandon Quest" button does not work anymore.

    I can however confirm that spamming my "Grouping" button does work, for some reason.

  5. #5

    Default There's a better fix...

    Folks, there's a better fix...

    I ran into this issue in my own addon, and asked for help at the wowace forum.

    The user Borlox gave me an effective piece of code
    Code:
    for i=1, STATICPOPUP_NUMDIALOGS do
      local dlg = _G["StaticPopup"..i]
      if dlg.which == "PARTY_INVITE" then
    	dlg.inviteAccepted = 1
    	break
      end
    end
    
    StaticPopup_Hide( "PARTY_INVITE" )
    So, update the StaticPopup_Hide( "PARTY_INVITE" ) so it looks like the example above and it will work.

    NOTE: It worked in my addon, but I don't use Jamba, so I can't guarantee it will work there.

    Hope that helps
    -- Author of MultiTool- a set of tools to make life easier for Multi Boxers and/or people who quest together
    -- Author of FlaskMinder - a lightweight addon to remind you about your food buff and flask/elixirs

    Rexxar Horde:
    Main team: 80 Prot pally, 80 Holy/Disc Priest, 80 Arcane Mage
    Alt team: 80 Combat Rogue, 80 Resto Druid

  6. #6

    Default

    Now for the next logical question... due to the changes to group order, is there a way to change Jamba for slaves to always accept invites in a particular order?

  7. #7

    Default RE: There's a better fix...

    Quote Originally Posted by 'DgtlSorcrs',index.php?page=Thread&postID=195902#p ost195902
    Folks, there's a better fix...

    I ran into this issue in my own addon, and asked for help at the wowace forum.

    The user Borlox gave me an effective piece of code
    Code:
    for i=1, STATICPOPUP_NUMDIALOGS do
      local dlg = _G["StaticPopup"..i]
      if dlg.which == "PARTY_INVITE" then
    	dlg.inviteAccepted = 1
    	break
      end
    end
    
    StaticPopup_Hide( "PARTY_INVITE" )
    So, update the StaticPopup_Hide( "PARTY_INVITE" ) so it looks like the example above and it will work.

    NOTE: It worked in my addon, but I don't use Jamba, so I can't guarantee it will work there.

    Hope that helps
    It works perfectly. Thanks a lot.

  8. #8

    Default

    Quote Originally Posted by 'Heenan',index.php?page=Thread&postID=195930#post1 95930
    Now for the next logical question... due to the changes to group order, is there a way to change Jamba for slaves to always accept invites in a particular order?
    Well, my guess is that since it was never really an issue before (as the order was predetermined by some strange hudu as I recall), I'm betting that they're just iterated trough in whatever order the team members are in the table.

    It seems logical that some kind of sort order / weight / organization could be added and a small config page for managing it would be in the realm of the do-able.
    -- Author of MultiTool- a set of tools to make life easier for Multi Boxers and/or people who quest together
    -- Author of FlaskMinder - a lightweight addon to remind you about your food buff and flask/elixirs

    Rexxar Horde:
    Main team: 80 Prot pally, 80 Holy/Disc Priest, 80 Arcane Mage
    Alt team: 80 Combat Rogue, 80 Resto Druid

  9. #9

    Default RE: RE: There's a better fix...

    Quote Originally Posted by 'Fef',index.php?page=Thread&postID=195931#post1959 31
    It works perfectly. Thanks a lot.
    No problem. It's not the most elegant solution... I'm researching a much better long-term fix, but it works well enough for the moment.

    Borlox from the wowace.com forums is the one to thank... I just had the good sense to ask and wait for someone smarter than me to hand me the answer on a sliver platter, then share the love.

    Seriously though, that's why I love the developer community... we help each other out.
    -- Author of MultiTool- a set of tools to make life easier for Multi Boxers and/or people who quest together
    -- Author of FlaskMinder - a lightweight addon to remind you about your food buff and flask/elixirs

    Rexxar Horde:
    Main team: 80 Prot pally, 80 Holy/Disc Priest, 80 Arcane Mage
    Alt team: 80 Combat Rogue, 80 Resto Druid

  10. #10

    Default

    Quote Originally Posted by 'Ken',index.php?page=Thread&postID=195683#post1956 83
    This is a temporary fix for Jamba 0.4d (the version name is still 0.4d, but it is a changed addon!):
    http://www.wow-multiboxing.com/files/Jamba.zip

    Changes:
    - changed TOC version so it doesn't get marked as an out-of-date macro
    - diggla's temporary fix that hides the group invite popup as it should

    [edit] Updated!
    I went ahead, downloaded that copy, updated the JambaGroup.lua file with the patch and have hosted it asJamba_v0.4d_FanUpdate.zip.

    NOTE: Please see my next post in this thread for a more recent version: Jamba_v0.4d_FanUpdate-2.zip
    -- Author of MultiTool- a set of tools to make life easier for Multi Boxers and/or people who quest together
    -- Author of FlaskMinder - a lightweight addon to remind you about your food buff and flask/elixirs

    Rexxar Horde:
    Main team: 80 Prot pally, 80 Holy/Disc Priest, 80 Arcane Mage
    Alt team: 80 Combat Rogue, 80 Resto Druid

Similar Threads

  1. Replies: 29
    Last Post: 06-27-2009, 03:09 AM
  2. Replies: 1
    Last Post: 04-23-2009, 05:57 PM
  3. Any idea when we'll see an update for Jamba?
    By Clovis in forum Macros and Addons
    Replies: 2
    Last Post: 04-20-2009, 09:21 AM
  4. Jamba Addon new features suggetion
    By Ivanhalf in forum Macros and Addons
    Replies: 3
    Last Post: 04-01-2009, 04:26 AM
  5. SickOfClickingDailies AddOn - great for multiboxers
    By puppychow in forum Macros and Addons
    Replies: 1
    Last Post: 10-16-2008, 04:14 PM

Posting Rules

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