Log in

View Full Version : 3.1 Jamba problems



gitcho
04-15-2009, 11:33 PM
Hey all - anyone else having problems with Jamba and 3.1? I have a macro "jamba-group invite" that invites everyone and with 3.1 they are all auto-declining the invintes - even though the group is setup properly and I have the auto-decline stuff turned off.

I can make it work if I force all the toons into "jamba solo" mode and then invite 1 by 1, and individually accept, but that's a pain ...

Any else having problems?

Tasty
04-15-2009, 11:43 PM
Hey all - anyone else having problems with Jamba and 3.1? I have a macro "jamba-group invite" that invites everyone and with 3.1 they are all auto-declining the invintes - even though the group is setup properly and I have the auto-decline stuff turned off.

I can make it work if I force all the toons into "jamba solo" mode and then invite 1 by 1, and individually accept, but that's a pain ...

Any else having problems?

problem with group invites after 3.1 ('http://www.dual-boxing.com/forums/index.php?page=Thread&threadID=21126')
[Jamba] Issues with inviting my group since 3.1 ('http://www.dual-boxing.com/forums/index.php?page=Thread&threadID=21118')
[Addon] Jamba - An assistant for multiboxers. 12th Update - 0.4d released. ('http://www.dual-boxing.com/forums/index.php?page=Thread&postID=195683#post195683')

Would seem quite a few people are :P

sparvath
04-16-2009, 12:57 AM
same goes for Multiboxer 2.0

gitcho
04-16-2009, 02:02 AM
thank you =) - i did do a search for "jamba 3.1" first, but either you can't sort searches by date, or i'm missing it ... thanks again =)

DgtlSorcrs
04-16-2009, 12:10 PM
Folks, there's a better fix...

I ran into this issue in my own addon, and asked for help at the wowace ('http://forums.wowace.com/showthread.php?t=16234') forum.

The user Borlox gave me an effective piece of 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

Please visit the official Jamba Thread ('http://www.dual-boxing.com/forums/index.php?page=Thread&postID=195946#post195946') for further info.