PDA

View Full Version : [WoW] [Addon] Jamba - An assistant for multiboxers. Old Thread



Pages : 1 2 3 4 5 6 [7] 8 9

Igg
01-06-2010, 02:54 PM
Jafula,
Anychance of bringing back Silent Selling/Repair plus the option to skip guild repair?

Right now the master is getting a lot of spam from repair/sell messages.

Thank you

Jafula
01-06-2010, 08:55 PM
Jafula,
Anychance of bringing back Silent Selling/Repair plus the option to skip guild repair?

Right now the master is getting a lot of spam from repair/sell messages.

Thank you

You can already do this. Under toon:merchant you can untick the guild repair option.

If you want to stop getting messages, change the message area dropdown in each section to "Mute (Default)".

Jheusse
01-07-2010, 06:05 PM
Feature request and a thread/post request:

Feature request is a gag toggle that keeps slaves from speaking or using most channels, cuts down on inadvertent spam.

Thread/post request could I trouble you to add in the date of new release of the newest version in the thread title or at least in the headers of the first post where you list the changes?

airlag
01-08-2010, 10:21 PM
I'm using Jamba for several months now. It's great.
Is there anywhere an explanation how jamba macro, macro:variables, macro:macros and proc work? I have the feeling I'm missing lots of the power of Jamba by not knowing how to use that.

I maybe have a useful suggestion or two.
I'd like an opportunity to show a characters pets health in the team window.
It then would be a big improvement if I could connect macros to the area of the health bars that can be used by clicking on that area, like "let char <x> use potion <z>", "let char <x> cast Pet Heal", "let char <x> cast heal on char <y> / pet of char <y>". Much like healbot :)

Can I somehow in-game get a list of the currently defined slash-commands, hidden buttons and so on?

loop
01-09-2010, 11:30 AM
Jafula,

Not sure if anyone will find this useful - I think they might - I wrote this to support a new quest reward selection method. This code will attempt to choose an item upgrades for each character from quest rewards, if it doesn't believe there is an upgrade, it will simply choose the most valuable item for vendoring. This is my first time writing anything in LUA, but I think dropping this code in AJM:DoChooseQuestReward will get you most of the way there (I've been testing in a separate addon):

At the very top of AJM:DoChooseQuestReward add:


local numberOfQuestRewards = GetNumQuestChoices()
Replace any explicit call to GetNumQuestChoices() with numberOfQuestRewards, for cleanliness.

Then, in the conditional for "more than one quest reward", a new option like "AJM.db.hasChoiceAquireBestQuestRewardForCharacter" would contain the logic below:


-- Choose the best item for this character, otherwise choose the most valuable to vendor:
local mostValuableQuestItemIndex, mostValuableQuestItemValue, bestQuestItemIndex, bestQuestItemArmorWeight = 1, 0, -1, -1
local armorWeights = { Plate = 4, Mail = 2, Leather = 1, Cloth = 0 }

-- Yanked this from LibItemUtils; sucks that we need this lookup table, but GetItemInfo only
-- returns an equipment location, which must first be converted to a slot value that GetInventoryItemLink understands:
local equipmentSlotLookup = {
INVTYPE_HEAD = {"HeadSlot", nil},
INVTYPE_NECK = {"NeckSlot", nil},
INVTYPE_SHOULDER = {"ShoulderSlot", nil},
INVTYPE_CLOAK = {"BackSlot", nil},
INVTYPE_CHEST = {"ChestSlot", nil},
INVTYPE_WRIST = {"WristSlot", nil},
INVTYPE_HAND = {"HandsSlot", nil},
INVTYPE_WAIST = {"WaistSlot", nil},
INVTYPE_LEGS = {"LegsSlot", nil},
INVTYPE_FEET = {"FeetSlot", nil},
INVTYPE_SHIELD = {"SecondaryHandSlot", nil},
INVTYPE_ROBE = {"ChestSlot", nil},
INVTYPE_2HWEAPON = {"MainHandSlot", "SecondaryHandSlot"},
INVTYPE_WEAPONMAINHAND = {"MainHandSlot", nil},
INVTYPE_WEAPONOFFHAND = {"SecondaryHandSlot", "MainHandSlot"},
INVTYPE_WEAPON = {"MainHandSlot","SecondaryHandSlot"},
INVTYPE_THROWN = {"RangedSlot", nil},
INVTYPE_RANGED = {"RangedSlot", nil},
INVTYPE_RANGEDRIGHT = {"RangedSlot", nil},
INVTYPE_FINGER = {"Finger0Slot", "Finger1Slot"},
INVTYPE_HOLDABLE = {"SecondaryHandSlot", "MainHandSlot"},
INVTYPE_TRINKET = {"Trinket0Slot", "Trinket1Slot"}
}

for questItemIndex = 1, numberOfQuestRewards do
local itemName, itemLink, itemRarity, itemLevel, itemMinLevel, itemType, itemSubType, itemStackCount,
itemEquipLoc, itemTexture, itemSellPrice = GetItemInfo(GetQuestItemLink("choice", questItemIndex))
local itemId = itemLink:match("|Hitem:(%d+)")
local isItemEquippable = IsEquippableItem(itemId)
local _, _, _, _, isItemUsable = GetQuestItemInfo("choice", questItemIndex)

if itemSellPrice > mostValuableQuestItemValue then
-- Keep track of which item is most valuable:
mostValuableQuestItemIndex = questItemIndex
mostValuableQuestItemValue = itemSellPrice
end

if isItemEquippable == 1 and isItemUsable ~= nil then
-- NPC is offering us an item we can actually wear:
local currentEquippedItemLinksInSlots = {}
local currentWorstEquippedItemInSlot = nil

-- Figure out what we already have equipped:
for _, itemSlot in ipairs(equipmentSlotLookup[itemEquipLoc]) do
if itemSlot ~= nil then
local currentEquippedItemLinkInSlot = GetInventoryItemLink("player", GetInventorySlotInfo(itemSlot))

if currentEquippedItemLinkInSlot == nil then
-- Of the n item slots available, at least one of them has nothing equipped. Ergo, it is the worst:
currentWorstEquippedItemInSlot = nil
break
else
-- There's an item in this slot, get some details on it:
local _, _, _, currentEquippedItemLevelInSlot, _, _, currentEquippedItemSubTypeInSlot = GetItemInfo(currentEquippedItemLinkInSlot)

-- We haven't yet determined the worst item, or the item we see in this slot happens to be worse than the other item
-- we saw in this partner slot (ie. a ring in one slot is worse than a ring in another slot):
if currentWorstEquippedItemInSlot == nil or currentWorstEquippedItemInSlot.itemLevel > currentEquippedItemLevelInSlot then
currentWorstEquippedItemInSlot = {
itemLink = currentEquippedItemLinkInSlot,
itemLevel = currentEquippedItemLevelInSlot,
itemSubType = currentEquippedItemSubTypeInSlot
}
end
end
end
end

if currentWorstEquippedItemInSlot == nil then
-- We're not even wearing an item in this slot, and the vendor has something we can use, take it:
bestQuestItemIndex = questItemIndex
else
if itemLevel > currentWorstEquippedItemInSlot.itemLevel then
-- NPC is providing us with an better item than what we currently have in this slot:
if armorWeights[itemSubType] ~= nil then
-- Armor subtype is one which we care to select based on some priority order:
if armorWeights[itemSubType] > bestQuestItemArmorWeight then
-- If this piece of armor is a better subtype (ie. Plate is better than Cloth if we can wear it):
bestQuestItemIndex = questItemIndex
bestQuestItemArmorWeight = armorWeights[itemSubType]
end
elseif currentWorstEquippedItemInSlot.itemSubType == itemSubType then
-- This isn't a piece of armor (ie. might be a weapon) - only take it if it's the same
-- subtype as the item we are already wearing (if we're wearing a staff, and NPC offers
-- a staff and a dagger, we'll take the staff):
bestQuestItemIndex = questItemIndex
bestQuestItemArmorWeight = -1
end
end
end
end
end

if bestQuestItemIndex < 0 then
-- If we haven't determined an item upgrade by now, just choose the one that we can vendor for the most gold:
bestQuestItemIndex = mostValuableQuestItemIndex
end

GetQuestReward(bestQuestItemIndex)
All yours if you want to make use of it. Only part of that code that isn't mine is the lookup table for equipment locations -> item slots, which I pulled in from LibItemUtils.

EDIT: Here's the code on PasteBin - easier to read w/ syntax highlighting: http://pastebin.com/m5ee57c2d

zoovoo
01-09-2010, 12:19 PM
jamba addon dont take quest i take the quest on master and only he take it... the slave quest log open but dont take it....

Boxstar
01-10-2010, 01:31 PM
Guys, just a simple question. How to move the Jamab Team Displa on the master? It is just positioned in the center of my screen and i can not move it. So how to move the jamba team window somehwere else?

Honorguard
01-10-2010, 01:36 PM
Guys, just a simple question. How to move the Jamab Team Displa on the master? It is just positioned in the center of my screen and i can not move it. So how to move the jamba team window somehwere else?

Hold Alt while you drag it with the mouse. (alt+click = move)

Boxstar
01-10-2010, 01:57 PM
Hold Alt while you drag it with the mouse. (alt+click = move)

thx

noidentity
01-11-2010, 02:25 PM
Hey all, lately I have been having a problem with jamba, whenever I open the /jamba menu my fps drops down to nothing and I have to constantly /rl to reload my ui.

Is there a way for me to fix this on my end?

taurolyon
01-14-2010, 10:37 AM
Possible incompatible addon problem here - Every time I open a vendor to repair or sell, I get disconnected. I believe it is a problem with an addon I use called SellJunk... It sells grey items and items I blacklist automatically when I open a vendor. With JAMBA, it auto-repairs at applicable vendors. I'm thinking the server's not liking the fact that i'm processing more than one transaction at a time and disconnecting me....

Haven't had a chance to disable SellJunk and enable JAMBA's internal sell junk feature, nor have I had a chance to test to see if this is the culprit addon... Just FYI

buzzerbeater
01-16-2010, 05:22 AM
Hello,

I'm new in here and have some questions.

Is there any Starter Guide for this Addon?

Because my first Problem is, that the slave is never Online.
It doesnt matter which Char I use to try it.

Is it a problem to use Win 7 or start WoW from the same direction? Do I need two wow Folders or wow.exe?

Greets

TheFallenOne
01-17-2010, 09:39 AM
Bit of a minor inconvenience since the latest Jamba update, it kind of broke my round-robin setup. ;) Figured I'd check here if there was another way to do it, or if not, if we could get the functionality back.

Basically, here's how my (random example spell) Frost Nova worked. The macro for all toons was:

/castsequence #RRStart#Frost Nova#RREnd#

Then, each toon would be using a different variable set. Toon1 would use variable set FTL1, Toon2 would use FTL2, etc., all with the same macro set.

FTL1 would have RRStart set as:
FTL2 would have RRStart set as: ,
FTL3 would have RRStart set as: ,,
FTL4 would have RRStart set as: ,,,
FTL5 would have RRStart set as: ,,,,

And then the same thing for RREnd, but in reverse order. This means that each toon would end up with a round-robined macro for Frost Nova without any extra work from me!

It worked great, however, this last update has, as far as I can tell, eliminated the ability to use the same macro set with different variable sets on a per-toon basis. I'm stuck to using one variable set per macro set. I *could* duplicate the macro set for each toon and use tags to turn them on for specific toons, HOWEVER, this would cause 5x the data to be included when I "push" macro sets... and it already takes 45 seconds to a minute to push *ONLY* the macro settings with THREE sets. I can't imagine what it would be like with fifteen.

Is there any way to do this still, or could this system be setup again? The easiest way I can think of is allowing the user to duplicate Macro/Variable set entries in the new "Macro" section, using different variable sets for each. That would allow me to set it up properly using tags.

airlag
01-17-2010, 04:48 PM
Possible incompatible addon problem here - Every time I open a vendor to repair or sell, I get disconnected. I believe it is a problem with an addon I use called SellJunk... It sells grey items and items I blacklist automatically when I open a vendor. With JAMBA, it auto-repairs at applicable vendors. I'm thinking the server's not liking the fact that i'm processing more than one transaction at a time and disconnecting me....

Haven't had a chance to disable SellJunk and enable JAMBA's internal sell junk feature, nor have I had a chance to test to see if this is the culprit addon... Just FYI
I'm surprised that you use redundant addons. What con SellJunk do what is not integrated in Jamba?

taurolyon
01-17-2010, 06:20 PM
I'm still getting some random disconnects when talking to repair vendors; I've disabled all other auto-sell and auto-repair addons and also unchecked "use guild funds for repairs."

Also, I dual box with my wife's acct, and I was using Jamba 0.5c to assist in helping her quest. I setup our toons as a Jamba team, but when I told her to remove my toon from the team so I wouldn't be spammed with her quest accepts, she clicked DISBAND instead of selecting me and clicking REMOVE. Wouldn't have been so bad, however I was off doing a pug heroic and it was as if I clicked on leave party on my end.

Could you possibly disable the DISBAND button if you are not in the same party as teammates (or solo)??

I know I'm not using JAMBA for which it was originally intended, but it offers so many features that I find helpful. (i.e. auto accept guild party invites, auto repair, auto sell, monitor party member's XP to level, etc.)

taurolyon
01-17-2010, 06:26 PM
I'm surprised that you use redundant addons. What con SellJunk do what is not integrated in Jamba?

SellJunk was just a left-over from my pre-dual boxing days and I hadn't the time to disable and uninstall it. Thank you, however, for pointing out the completely obvious... I merely posted this bug as a possibility of addon incompatibility.

taurolyon
01-17-2010, 06:30 PM
Hello,

I'm new in here and have some questions.

Is there any Starter Guide for this Addon?

Because my first Problem is, that the slave is never Online.
It doesnt matter which Char I use to try it.

Is it a problem to use Win 7 or start WoW from the same direction? Do I need two wow Folders or wow.exe?

Greets

Did you put both party members in your team list on both toons? You will need to in order to make sure that JAMBA on both clients update each other and communicate.

I use Win7 x64, and I just reopen the same WOW.EXE each time. You do not need to copy or install a second WoW client.

paraa
01-17-2010, 06:51 PM
Hi. I have used Jamba to level two chars to 60 and it works great. Now I decided to level another two chars to 60 again, but I have a problem. My Master (think it doesn´t matter) Auto-Accept all Quests if I´m going to speak to a NPC. I have Enabled/Disabled all features of Jamba but NO option work for me. He is just Auto-Accepting Quests if I talk to a NPC. This is really bad, because I want to look what Quests are available before Accepting and Sharing them. Does someone has a solution for this?

regards

Maxion
01-18-2010, 02:52 AM
Hi. I have used Jamba to level two chars to 60 and it works great. Now I decided to level another two chars to 60 again, but I have a problem. My Master (think it doesn´t matter) Auto-Accept all Quests if I´m going to speak to a NPC. I have Enabled/Disabled all features of Jamba but NO option work for me. He is just Auto-Accepting Quests if I talk to a NPC. This is really bad, because I want to look what Quests are available before Accepting and Sharing them. Does someone has a solution for this?

regards

These seems to be a bug with WoW now, even without any addons, characters (at least new ones) seem to accept quests before you even hit the accept button.

I think we'll just have to report it to blizzard and hope they fix it soon.

TheFallenOne
01-18-2010, 04:34 AM
These seems to be a bug with WoW now, even without any addons, characters (at least new ones) seem to accept quests before you even hit the accept button.

I think we'll just have to report it to blizzard and hope they fix it soon.

It was an intentional change on Blizzard's end, though it feels really weird. I guess the intent was that it makes it "easier" on new players.

Farmerbobbeh
01-20-2010, 09:31 PM
Did you put both party members in your team list on both toons? You will need to in order to make sure that JAMBA on both clients update each other and communicate.

I use Win7 x64, and I just reopen the same WOW.EXE each time. You do not need to copy or install a second WoW client.


Do you know any other possible solution to this? I have one char (and only this char) that is in the team list on both computers. He has the addon enabled. But he won't show up as online on the other clients, and on that client everyone else shows as offline. This also means he wont follow the leader when using ISBoxer. Quite annoying. :)

TheFallenOne
01-21-2010, 03:32 AM
Do you know any other possible solution to this? I have one char (and only this char) that is in the team list on both computers. He has the addon enabled. But he won't show up as online on the other clients, and on that client everyone else shows as offline. This also means he wont follow the leader when using ISBoxer. Quite annoying. :)

Make sure the channels are set to the same thing in the "Communication" tab on all computers. :)

Farmerbobbeh
01-21-2010, 08:05 AM
Make sure the channels are set to the same thing in the "Communication" tab on all computers. :)

Yeah, all settings are pushed to all characters.

Could it be something with the tags? I don't seem to be able to remove master as a tag on this character and I can't add master as a tag to the actual master.

HPAVC
01-21-2010, 08:13 AM
Yeah, all settings are pushed to all characters.

Could it be something with the tags? I don't seem to be able to remove master as a tag on this character and I can't add master as a tag to the actual master.

I would make sure there isn't something wonky with the channel, go to social tab and see what channels you are in for both characters.

Possibly want to: Goto jamba profile, save your profile, create virigin profile, logout, login, form group, add party members, and set master. From there restore yee old profile.

Farmerbobbeh
01-21-2010, 08:26 AM
I would make sure there isn't something wonky with the channel, go to social tab and see what channels you are in for both characters.

Possibly want to: Goto jamba profile, save your profile, create virigin profile, logout, login, form group, add party members, and set master. From there restore yee old profile.

Thanks. That did indeed fix it. Not sure what the problem was tbh, once I swapped to the default channel both the computers recognized the others and then swapping back to the old profile and channel worked. :)

128z
01-27-2010, 09:57 AM
Hi,

Is there a command in Jamba to stop follow?
To leave toons in some place?
I found lots on command to start follow..

/jamba-follow
/jamba-follow push
/jamba-follow master <tag>
/jamba-follow target <target> <tag>
/jamba-follow aftercombat <on|off> <tag>
/jamba-follow strobeon <target> <tag>
/jamba-follow strobeonme <tag>
/jamba-follow strobeonlast <tag>
/jamba-follow strobeoff <tag>
/jamba-follow setmaster <name> <tag>

but no one to stop it.. strobeoff only disables sticky follow.. but toons still follow master..
sry for stupid question :)

airlag
01-27-2010, 10:00 AM
I'm still in search for a tutorial for the improved features of Jamba like how to define/use Jamba macros.
Can you please share some good links?

airlag
01-27-2010, 10:05 AM
Hi,

Is there a command in Jamba to stop follow?
Move that char a tiny bit, like turning left. That'll break follow as long as strobe is off.

128z
01-27-2010, 10:15 AM
Move that char a tiny bit, like turning left. That'll break follow as long as strobe is off.

hehe I understand how to brake follow in game..
question is how to brake it using only mouse on main.. without transferring buttons to toons :)

edit: to start follow i click macros icon on main.
/jamba-follow master all
or
/jamba-follow strobeonme all

question how to stop follow same way.. something like /jamba-follow stop all
or maybe just change follow focus to another toone name?

Khatovar
01-27-2010, 10:30 AM
Not possible. You cannot macro movement. Follow can be broken by slave movement, slaves engaging in melee combat {or interacting with an NPC} or slaves using a channeled spell. Either way, you will need to send a command.

You can send slaves to follow another toon, but it will still require a new follow macro and your slaves will turn to face the new follow target, causing them to face the wrong way.

Jafula
01-28-2010, 06:05 PM
YES! Thank you!

I'd still like to see the option added under the follow tab though, if possible! =D

Will see what I can do:

http://wow.curseforge.com/addons/jamba/tickets/77-option-to-turn-off-follow-strobing-when-in-a-vehicle/

Jafula
01-28-2010, 06:09 PM
Feature request and a thread/post request:

Feature request is a gag toggle that keeps slaves from speaking or using most channels, cuts down on inadvertent spam.

Thread/post request could I trouble you to add in the date of new release of the newest version in the thread title or at least in the headers of the first post where you list the changes?

Your gag toggle module has a feature request ticket here:

http://wow.curseforge.com/addons/jamba/tickets/78-gag-toggle-module/

All Jamba releases are listed here:

http://wow.jafula.com/addons/1-jamba/13-jamba-release-history

Jafula
01-28-2010, 06:13 PM
I'm using Jamba for several months now. It's great.
Is there anywhere an explanation how jamba macro, macro:variables, macro:macros and proc work? I have the feeling I'm missing lots of the power of Jamba by not knowing how to use that.

I maybe have a useful suggestion or two.
I'd like an opportunity to show a characters pets health in the team window.
It then would be a big improvement if I could connect macros to the area of the health bars that can be used by clicking on that area, like "let char <x> use potion <z>", "let char <x> cast Pet Heal", "let char <x> cast heal on char <y> / pet of char <y>". Much like healbot :)

Can I somehow in-game get a list of the currently defined slash-commands, hidden buttons and so on?

I'll get around to describing how Jamba-Macro works, there are plenty of threads here to help you out in the mean time. Proc is an alpha module and I recommend disabling it.

Here is a ticket for your request, not sure that I'll be able to do it, but its in the system now.

http://wow.curseforge.com/addons/jamba/tickets/79-show-a-characters-pets-health-in-the-team-window/

Slash commands are listed here:

http://wow.curseforge.com/addons/jamba/pages/slash-commands/

Jafula
01-28-2010, 11:01 PM
Jafula,

...

EDIT: Here's the code on PasteBin - easier to read w/ syntax highlighting: http://pastebin.com/m5ee57c2d

Cheers, will have a look at integrating the option soon.

Jafula
01-28-2010, 11:02 PM
jamba addon dont take quest i take the quest on master and only he take it... the slave quest log open but dont take it....

Make sure that every toon in your team has every toon in your team in their team list. :-)

Jafula
01-28-2010, 11:03 PM
Hey all, lately I have been having a problem with jamba, whenever I open the /jamba menu my fps drops down to nothing and I have to constantly /rl to reload my ui.

Is there a way for me to fix this on my end?

No one has reported an issue like this. I suspect something else is the cause.

Jafula
01-28-2010, 11:04 PM
Hello,

I'm new in here and have some questions.

Is there any Starter Guide for this Addon?

Because my first Problem is, that the slave is never Online.
It doesnt matter which Char I use to try it.

Is it a problem to use Win 7 or start WoW from the same direction? Do I need two wow Folders or wow.exe?

Greets

Sorry, nothing really documented for 0.5 yet. Its something I am working on fixing slowly.

Jafula
01-28-2010, 11:07 PM
Possible incompatible addon problem here - Every time I open a vendor to repair or sell, I get disconnected. I believe it is a problem with an addon I use called SellJunk... It sells grey items and items I blacklist automatically when I open a vendor. With JAMBA, it auto-repairs at applicable vendors. I'm thinking the server's not liking the fact that i'm processing more than one transaction at a time and disconnecting me....

Haven't had a chance to disable SellJunk and enable JAMBA's internal sell junk feature, nor have I had a chance to test to see if this is the culprit addon... Just FYI

Thanks for the info, but not much I can do here. Two different addons trying to do the same thing is likely to cause issues. I can't test against all the possible addons out there. Its up to each individual user to manage their own addons.

Jafula
01-28-2010, 11:11 PM
Bit of a minor inconvenience since the latest Jamba update, it kind of broke my round-robin setup. ;) Figured I'd check here if there was another way to do it, or if not, if we could get the functionality back.

Basically, here's how my (random example spell) Frost Nova worked. The macro for all toons was:

/castsequence #RRStart#Frost Nova#RREnd#

Then, each toon would be using a different variable set. Toon1 would use variable set FTL1, Toon2 would use FTL2, etc., all with the same macro set.

FTL1 would have RRStart set as:
FTL2 would have RRStart set as: ,
FTL3 would have RRStart set as: ,,
FTL4 would have RRStart set as: ,,,
FTL5 would have RRStart set as: ,,,,

And then the same thing for RREnd, but in reverse order. This means that each toon would end up with a round-robined macro for Frost Nova without any extra work from me!

It worked great, however, this last update has, as far as I can tell, eliminated the ability to use the same macro set with different variable sets on a per-toon basis. I'm stuck to using one variable set per macro set. I *could* duplicate the macro set for each toon and use tags to turn them on for specific toons, HOWEVER, this would cause 5x the data to be included when I "push" macro sets... and it already takes 45 seconds to a minute to push *ONLY* the macro settings with THREE sets. I can't imagine what it would be like with fifteen.

Is there any way to do this still, or could this system be setup again? The easiest way I can think of is allowing the user to duplicate Macro/Variable set entries in the new "Macro" section, using different variable sets for each. That would allow me to set it up properly using tags.

I will see what I can do. Its going to be tricky, because the nice, easy way of managing multiple macro sets like you ask means breaking the existing macro sets you already have built....

Here's a ticket for your request:

http://wow.curseforge.com/addons/jamba/tickets/81-use-a-macro-set-multiple-times/

I assume that you are still using an older version because of this.

Jafula
01-28-2010, 11:15 PM
I'm still getting some random disconnects when talking to repair vendors; I've disabled all other auto-sell and auto-repair addons and also unchecked "use guild funds for repairs."

Also, I dual box with my wife's acct, and I was using Jamba 0.5c to assist in helping her quest. I setup our toons as a Jamba team, but when I told her to remove my toon from the team so I wouldn't be spammed with her quest accepts, she clicked DISBAND instead of selecting me and clicking REMOVE. Wouldn't have been so bad, however I was off doing a pug heroic and it was as if I clicked on leave party on my end.

Could you possibly disable the DISBAND button if you are not in the same party as teammates (or solo)??

I know I'm not using JAMBA for which it was originally intended, but it offers so many features that I find helpful. (i.e. auto accept guild party invites, auto repair, auto sell, monitor party member's XP to level, etc.)

Re: the random disconnects, turn off auto repair and auto buy/sell in Jamba and see if they go away.

I don't want to add more logic to disable the DISBAND button in this situation. I like to be able to assume that you know what you are doing when using Jamba. Obviously this was an unfortunate incident for you, but I'm sure it won't happen again. Also, the whole point of disband (for me anyway) is to have a quick way for my toons leave a party that has strangers in it. Disabling the button in this case makes it useless.

TheFallenOne
01-29-2010, 03:04 AM
I assume that you are still using an older version because of this.

For now I'm still using the newest version and have just removed the round robin functionality, as it's not essential while I'm questing - once I hit 80 (at 74.5 right now) I'll either be downloading an old version or reworking my macros into whatever form works with the current version (since I won't be changing macros much at that point). :)

Reglar
01-30-2010, 06:26 PM
I have a weird issue, just popped up in the last few weeks, no changes that I recall making to jamba.

I have my toons setup to purchase water and reagents when they shop. They now buy 5x as many of them as I needed. When I say 5x the number, it actually does 5 discreet buys, each time buying the amount needed.

I turned off auto-buy to see if it was another mod buying stuff - nothing bought so no other addons doing it

I deleted and re-added the items in case the data was corrupt - no change, still bought 5x what I needed.

I thought maybe there was some party multiplier going on, so dropped and logged out a character, still 5x.

I checked the .lua savedvariables and it looked ok:


["merchant"] = {
["autoBuy"] = true,
["autoBuyItems"] = {
["|cffffffff|Hitem:44605:0:0:0:0:0:0:0:80|h[Wild Spineleaf]|h|r"] = {
["tag"] = "all",
["name"] = "Wild Spineleaf",
["amount"] = 20,
},
},
},
I checked the purchase module LUA but nothing jumped out at me.

----

I debugged it some more, procedure ProcessMerchantShow is being invoked 5 times. I traced it back, and yes, its being invoked 5 times from the event, so I am at a loss. I checked registration and MERCHANT_SHOW is only registered once.

I guess there's some add-on conflict, I'll experiment more.

----

Update 2 - well its an interaction with ISBOXER, when I enable that mod then 5 purchases are made, if I disable it, normal 1. I'll see what I can dig up and if necessary open an ISBOXER thread on it.

----

Update 3 - I logged onto the ISBOXER chat channel, but Lax didn't have any ideas why it would happen, so back to asking anyone who has ideas...

----

Update 4 - and I found the issue, I had ISBOXER setup with a repair key sequence, and it invoked another key sequence to interact with target, both used broadcast to all, so it was chain broadcasting and each window was getting hit with 5 interact key requests. I changed it to not call the other key sequence and my issue went away.

Not sure why this wasn't happening before but just glad its fixed.

Jafula
01-31-2010, 01:04 AM
Sweet, not a problem with Jamba then, that's what I like to read!

king.pa
02-02-2010, 02:19 PM
Hi Jafula..
what a wonderful add on you've made !!
I'm amazed by your work !!

thanks for the good work...

I really do enjoy the Item buttons bar, I wish it could be used for vanity pets, mounts or even spells, which is not working atm !! If you think it's doable.. I'd be pleased by a feature like this !

again, many thanks :)

Hi jafula, I'm pushing this up as I'm sure you haven't saw my post.
thanks for the reply

Jafula
02-02-2010, 04:15 PM
Hi jafula, I'm pushing this up as I'm sure you haven't saw my post.
thanks for the reply

Hey, sorry I missed your post, I hear you. I wanted the item bar to be used for pets and mounts, but I couldn't do it easily at the time of writing. I can't use the item bar for spells easily as I would have to use an action bar for that, and wow only has a limited number of them, most, if not all, of which are used by addons like BarTender.

Plus, I think the item bar should be for items, not spells. Perhaps someone could make a spellbar module for Jamba if you really wanted spells.

I think that pets and mounts don't work, because they are now classed as spells, which is a shame. If I get some time, I might see if I can make something work, but please don't count on that.

I really like your suggestions (esp. the sell item on all toons idea), so if you have more, please let me know.

How did you get on with the French client and the words 'Drink' and 'Food' regarding the Jamba-Follow option that was do not strobe if eating or drinking? Did changing the words in the locale file work for you?

king.pa
02-03-2010, 11:29 AM
Oh My, Jafula.. :p happy to help, the sell item on all toons work like a charm.. I'm pleased that you liked it :) and I'm very exited about this wonderfull feature which was good on paper.. but even better live !!

I'm really disapointed by the vanity pets and/or mount feature missing from the item bar, but it makes sense... those are no longer items but spells.. anyway, if you manage to get just two buttons : one for the vanity pets, and the second for the mounts, It will help synchronise and siplify the use of pets and mounts (especially when entering "parade" mode in dalaran :o) : I set up a macro that cast my brewfest kodo or my GT4 flying mount and that's it .. and I have plenty of mounts .. i'd like to change once in a while without having to recreate my macro on each toon each time...

at last, I'm very happy that you're mentionning the stop of follow strobing on toons which btw don't work in the french client at all.. I've saw the locale files but haven't cheked'em out.. I'll keep you posted with the result of translating the words in the fr_FR file.

thanks again Jafula.. and If I find more other good ideas, you'll be the first to know :)
happy to help :)

bi_box_curious
02-04-2010, 10:00 AM
My Jamba isn't working right!!
I downloaded it - it was all in one folder so i added the folder to my interface>addons folder and nothing showed up. I logged out and extracted all the folders in the one folder and put them individually in my addons folder (I did this on both of my toons that I am trying to run)
Here is the Interface options I am getting --- It looks different than the screen shot I saw from the link where I downloaded the addon.
http://i756.photobucket.com/albums/xx209/Dragon_Coilfang/Picture20.png?t=1265288712

ALSO -- On my master (at first it was on both but after i re-installed the addon it's only on my master)
this is what I see right smak in the middle of my page
http://i756.photobucket.com/albums/xx209/Dragon_Coilfang/Picture19.png?t=1265288841

I was able to remove the item bar after taking the screen shot but the two bars that have my toons name are still there.

what am i doing wrong!!!

Khatovar
02-04-2010, 10:20 AM
I don't really see a problem with the GUI for Jamba, that's the way it's supposed to look.

Since you didn't specifically ask any questions other than "What am I doing wrong"...

/em starts psychic mode

For the Items and Team boxes ALT+Drag to move them.

Jamba > Display: Team > to resize, hide and otherwise alter the appearance of the TEAM window.

Jamba > Item Use > to do likewise for the ITEM bar

ESC > Keybindings > *scroll scroll scroll scroll* Jamba-Item-Use to set keybindings for the ITEM bar. Do this on BOTH toons.

/em ends psychic mode.

bi_box_curious
02-05-2010, 05:32 PM
According to the link I found where I downloaded Jamba, (the link on these forums took me to a page that had the download and this link) under getting started shows the add on looking like
http://wow.jafula.com/images/stories/jamba/0.2/jamba-core-team-0.2.jpg

Now, im not the most computer friendly person - but if the page that i downloaded the add from tells me this is what it's supposed to look like - thats the only thing i expect it to look like - maybe the pic is outdated or... what i thought, was i screwed up - i explained my steps so when i asked "what am i doing wrong?" i meant am i doing anything wrong in process, but i digress.

I toyed around with it a little and found how to disable the boxes that were in my way but thank you for telling me how to move them (another reason i thought something was wrong was i didnt know to alt+click)

sorry for causing psychic mode --- hey i already knew about key bindings *grins innocently*

TheFallenOne
02-05-2010, 07:02 PM
The picture on the website is quite out of date. Your addon is fine. :p

Maxion
02-06-2010, 09:13 AM
That is a picture of the old version, just click the Core: Team module in the options to find the equivalent screen.

Jafula
02-11-2010, 10:46 PM
Jamba 0.5d has been released. Link in first post.


The changes are:


Jamba-Follow


Fixed toon incorrectly follow strobing on previous follow strobe master.
New option to pause follow strobing when in a vehicle.

Jamba-Quest


Changed wording on Abandon All to be specific about what it does.
New option for quest reward selection to automatically choose best reward for toon (provided by loop (http://www.dual-boxing.com/showpost.php?p=257610&postcount=1505)).
New option to override quest auto select/auto complete with the shift key.

J6mpsikas
02-13-2010, 10:02 AM
i have serious problems with jamba showing my team offline. In last release it did same thing.

Jafula
02-13-2010, 05:35 PM
i have serious problems with jamba showing my team offline. In last release it did same thing.

First of all, grats on getting to Outland with your team.

Serveral things:

1. Make sure every toon has every toon in your team in the team list in Core: Team.

2. Make sure every toon has the same channel name and channel password in the Core: Communications settings page. I would recommend resetting these and then doing a /reload on all your toons.

If you are still having trouble, you can check the "Show Online Channel Traffic (For Debugging Purposes)" box and see if your team gets listed in the channel checks.

This debug traffic is spammy, but you should see a line that is similar to:

[5. JambaTeamIsOnline] Toone, Toonb, *Toonc, Toonf

Every member of your team should be listed in this channel. If they are not, then you know that toon has a problem with its chat channel. Wiping the offending toons chat channel / history should fix the problem.

Please let me know how you get on.

Jafula.

Jafula
02-13-2010, 05:56 PM
Forward UI Errors and UI Messages functionality up for debate... Please post an opinion.

http://www.dual-boxing.com/showthread.php?t=28413

J6mpsikas
02-14-2010, 05:57 PM
changed channel pass and name and it works for now. TNX Jafula, you made my day! :D

Tiburon502
02-16-2010, 07:21 AM
Jafula I came to bug you again. I made a new team from 5 different accounts. I set up the 1 button leader trick you showed me from an earlier post. The #toon1# and so on trick. Ok well I keep getting this message on all my toons and only my master stays leader

JambaMessage: Error: Could not find area: Toon
JambbaMessage: #toon1# is not in my team list. I can not set them to my master.

HPAVC
02-16-2010, 08:47 AM
What is the correct way update macros for a team, so if you have made a change to a tag variable and want to change some text in a macro (example being if i have tags for dual spec options, and I want to remove a tag from a character so a different macro-set is used). What exactly should someone be clicking. It seems to take quite a long time (many minutes) for the changes to propagate. Logging in and logging out speeds it up, though I could just be chasing non-sense.

Jafula
02-16-2010, 03:15 PM
What is the correct way update macros for a team, so if you have made a change to a tag variable and want to change some text in a macro (example being if i have tags for dual spec options, and I want to remove a tag from a character so a different macro-set is used). What exactly should someone be clicking. It seems to take quite a long time (many minutes) for the changes to propagate. Logging in and logging out speeds it up, though I could just be chasing non-sense.

Two things you need to do:

1. Make sure all toons have the same tags and macros. You can use the push settings buttons on Jamba-Tag and Jamba-Macro for this.

Note: If you just use toon tags (Jamba-Tag) as variables, this can be really quick as pushing the tag settings is fast, whereas pushing the macro settings is slow.

2. Rebuild the macros. Click "Macro" on the left hand side and then click the button "Build Macros (Team)".

I switch my paladin between tank and dps by just changing the tags that the paladin has and then clicking the "Build Macros (Team)" button.

Hope that helps, if you have any questions or suggestions, I'm all ears...

Jafula
02-16-2010, 04:30 PM
Jafula I came to bug you again. I made a new team from 5 different accounts. I set up the 1 button leader trick you showed me from an earlier post. The #toon1# and so on trick. Ok well I keep getting this message on all my toons and only my master stays leader

JambaMessage: Error: Could not find area: Toon
JambbaMessage: #toon1# is not in my team list. I can not set them to my master.

Ouch. It looks a bit messed up. Not sure why you are getting the first message.

The second message can be solved by making sure that one of your toons has the tag (see Jamba-Tag) called "toon1" (without the quotes). Your other toons should be tagged toon2, toon3, etc.

Hope that helps, let me know if you have more problems.

DrChaos
02-18-2010, 11:53 PM
I have a simple question that might have been answered already but is there a way that I dont know about that makes it eaiser to add members to the team. I recently updated jamba and it took all my toons out of the team. Its easier for others that dont use ò, ô, ì, and so on to add chars but for me it takes a bit because all 15 of my team names have some sort of ascii text. The task of typing instead of being able to[shift] click the name is tearing me up. 210 times to type them in across all chars, i have to ice my hands. LOL

thanks for your time jafula!

J6mpsikas
02-19-2010, 02:16 AM
dont know if there is shift click option but you sure dont need to type them to all you chars. Just your main char and when all your team is invited you just push that push settings button in right corner of jamba setup console.

Jafula
02-19-2010, 05:41 AM
I have a simple question that might have been answered already but is there a way that I dont know about that makes it eaiser to add members to the team. I recently updated jamba and it took all my toons out of the team. Its easier for others that dont use ò, ô, ì, and so on to add chars but for me it takes a bit because all 15 of my team names have some sort of ascii text. The task of typing instead of being able to[shift] click the name is tearing me up. 210 times to type them in across all chars, i have to ice my hands. LOL

thanks for your time jafula!

Invite all your toons to a party. Then type

/jamba-team addparty

This will add all the toons in your party to the jamba team.

Type

/jamba-team

to go to the team window.

DrChaos
02-19-2010, 10:32 AM
WOOOOT!
You are a god!

CheapWhisky
02-19-2010, 02:24 PM
Forward UI Errors and UI Messages functionality up for debate... Please post an opinion.

http://www.dual-boxing.com/showthread.php?t=28413


Does this include the messages such as "I am unable to take the same flight path", and "Item not ready for use"? If so, I liked it a lot, and actually held off upgrading to 5.0 for a long time when I found out it wasn't included yet.

Jafula
02-19-2010, 03:29 PM
Does this include the messages such as "I am unable to take the same flight path", and "Item not ready for use"? If so, I liked it a lot, and actually held off upgrading to 5.0 for a long time when I found out it wasn't included yet.

Yes, that's correct. Any suggestions about how you would like to see these messages are welcome.

arpy
02-20-2010, 09:04 AM
Hey Mr.Jafula-Man..:)

First, THANKS FOR YOUR HARD WORK!!!!And sorry for my bad english....BOW DOWN FOR JAFULA, Your Addon give me a better-taste of Multiboxing...:p

.....but i really miss this "Old-Jamba-Target" thing..the one with the little nice RaidIcon-Roundup for a QuickMacro-Assigment and TargetHealth-Display to get a "visible" UnitStatus-Relation.:(

Ive spend hours in Interface-Modding, since your drastic change from V4.xx to V5.xx, people laught to me, seeing me and my toons sitting around, while ive to understand the Philosophia behind Jamba-Macro...anyway, ive "modded" 2 another Addons to get my MultiTargetWindow back;
Ive rearranged the ChildFrames from GCP and placed Vuhdo-Bars in a new Parental Frame:D

My Question now;

Is it possible to add the "Old" TargetMacro-System as a new Jamba-Modul?So i can "fill" in Variables for hostiletargets "on the fly" and see them in a Jamba-Frame?:cool:

Situation; Bossfight, Boss+1Heal, Maintoon (Focus on Boss) attacked Boss, Slave1 is MainHeal, Slave2 is MainAssist.
Slave1 (Focus on Maintoon) has healed the Maintoon, Slave2 (Focus on EnemyHeal) sheeped the EnemyHeal.

The Display (GCP) looks then like this;

--------------------------------------------------------------------------------------------------------------------------
-------Target(Dist)------ TargetTarget------NextThreat(%)-------Focus(CC)-------Focustarget----
--------------------------------------------------------------------------------------------------------------------------
-----A.BossName(>8)----MainToon--------Slave1(60)-------A.BossName(20)-----MainToon----
-----A.BossName(20)----MainToon--------Slave1(60)-----------MainToon(0)-----------Boss-------
-----A.BossName(20)----MainToon--------Slave1(60)-------B.1HealName(10)------Slave2------
--------------------------------------------------------------------------------------------------------------------------
(only 3 Targets, because i am Triboxing...the idea is expandable...)

Ive placed a GroupFrame (Vuhdo) over it, now the Targets have Bars, RaidIcons and are Clickable,too.Now I can easy remeber Casts,Toons and Targets with RaidIcons and have a random acess...the Targets, not the FocusTargets, this need more improvment with Macros inside and Delays outside of wow...this is an another thread....blabla...:eek:

regards

Daeri
02-24-2010, 09:00 AM
Hello,

I can't find the courage to read all 157 pages of this thread, so please accept my apologies if the subject has already been raised before :

Jafula, are you interested in having the addon translated into foreign languages ? Have you considered it ? (not sure how much work it would be to change the code so that the addon supports language files) Jamba is a very popular addon among foreign multiboxers, although some of them have trouble configuring it to fit their need because they can't read English. So I would be happy to do the French translation if you'd like to take the plunge but needed help for the translations ;)

Jafula
02-24-2010, 08:21 PM
Hello,

I can't find the courage to read all 157 pages of this thread, so please accept my apologies if the subject has already been raised before :

Jafula, are you interested in having the addon translated into foreign languages ? Have you considered it ? (not sure how much work it would be to change the code so that the addon supports language files) Jamba is a very popular addon among foreign multiboxers, although some of them have trouble configuring it to fit their need because they can't read English. So I would be happy to do the French translation if you'd like to take the plunge but needed help for the translations ;)

This applies to the current version of Jamba-0.5.

Yes, that would be great. You can make a start already. In each of the module files there is a directory called locale. In that directory there will be a file xxxx-frFr with lines like

L["Hello"] = true

You would need to change the lines in the Frfr file to something like

L["Hello"] = "Bonjour"

Just changing these files should be enough. Please let me know if the instructions were clear enough or if you have questions. When you have finished we can work out a way for you to send the files to me.

Cheers!
Jafula.

Daeri
02-25-2010, 03:39 AM
Your instructions are clear enough;) I'll work on it this evening as soon as I'm back home and will let you know. I guess I should be able to check the results in game directly when I'm finished with the translation of a module :)

A question though :
I see you sometimes include a parameter inside a string and therefore use ' as a string delimiter instead of " :

L['Are you sure you wish to remove "%s" from the variable SET list?'] = true

in that case, how can I safely use ' as a word separator (as in "I'm glad to see you"), please ?



L['Are you sure you wish to remove "%s" from the variable SET list?'] = 'Etes-vous sûr(e) de vouloir supprimer "%s" de l'ensemble de variables ?'

Not sure wether there is an escape character in LUA language like in C language (\X) or if I should put two single quotes or something ? For now, I've workaround-ed this problem by wording differently the sentence but I'm curious to know the proper way to do this :p

Tiburon502
02-25-2010, 05:33 AM
Hey Jafula I have come to bother you again...lol Ok since everytime I make a new team I somehow mess up my macros, is there anyway I can use my first one I made for my shammy druid team that works fine and just add the names of the other team. Or is there anyway I can just copy the old one and just change the names so I have both? Oh and I mean my 1 button leader swapping macros you helped me with before

Daeri
02-25-2010, 01:08 PM
Translation done. There might be some minor changes to be done after I've submitted my work to the French speaking community.

However I've tried my modified version of the addon but it still shows in-game in English (although the "core:profiles" tab is in French and has always been). I can't figure out a way to see my changes ingame, still trying. I guess there's something to change in a config file to tell the addon which language to use ?

I've hosted my preliminary work here : http://www.chez-cheos.org/jamba/Jamba-0.5d-fr.zip (please be gentle to not download it if you don't need it because I have limited bandwidth ;))

species6729
02-26-2010, 08:04 AM
Getting back to WOW after a 4 month, a lot has change since that. I have downloaded the latest ver. of Jamba. I have a lot more fuction than before. I am have some problems with it. I am unable to move the Items bar and the Team Display. I have disable all the other addon and both of this box are sitting in the middle of the screen. I can use the check the hide box in Jamba but I will like to use both of this display. I am not able to left or right click and drag the boxes to the side of my display.

/faceplam
I need to use the Alt and left click.

Khatovar
02-26-2010, 08:10 AM
http://www.dual-boxing.com/showthread.php?t=28573

Kruu
02-26-2010, 09:44 AM
UseItem is not working for me. When i put an item in one of the slots on the master toon it appears on slave toons bar, but when the master toon uses the item via hot key or clicking the item on the bar the master will use it but slave will not.

Khatovar
02-26-2010, 09:58 AM
Did you set the keybindings on both via the Keybindings menu in WoW? Make sure the binds aren't also tied to something else by default.

Maxion
02-27-2010, 07:12 AM
And i'm pretty sure clicking it won't work, only the keybind you set on everyone.

Fuzzyboy
03-05-2010, 06:10 AM
Not sure if this has been suggested before, but:

Would like to see a level filter on chat forwards. I have a spam filter, but it seems that Jamba forwards before the spam add-on filters (bad-boy in my case) - I wouldn't really need a spam filter if I could simply specify to filter out all messages from characters with a level lower than 10 (or whatever) - would be great and save me an add-on.

Also, I'd love to see an option to switch off jamba. I realize that this can be done in part with profile, but not completely. Rigth now I use ACT to do that, but it would be nice to be able to macro it.

Also - great work, love the add-on - especially the macro functionality is brilliant!

Maxion
03-05-2010, 12:34 PM
Agreed on the level filter, the spammers have become more numerous lately, and it would be nice to still have some of my chat log intact by the time I manage to broadcast type /ignore and the horribly iffy-to-type names they often use.

jeepdriver
03-07-2010, 07:59 PM
Ive noticed when a whisper relays from a slave to my master toon, that sometimes after I hit enter to send the message, the type box stays open on the slave. Ive never had it happen before and I am using the most current version..is there anything in the addon itself I need to look for to fix it? Thanks in advance for any assistance that can be provided :)

Maxion
03-09-2010, 01:39 AM
Ive noticed when a whisper relays from a slave to my master toon, that sometimes after I hit enter to send the message, the type box stays open on the slave. Ive never had it happen before and I am using the most current version..is there anything in the addon itself I need to look for to fix it? Thanks in advance for any assistance that can be provided :)

Would you happen to be using the WIM addon?
If so, it's in the WIM settings.

Teknetron
03-09-2010, 01:31 PM
Hello,

First of all, thank you for such a great addon.

I was wondering if you are able to include the functionality in order to make the "Jamba Team" section able to be detected by "Clique" 's frame selection.

As a multiboxer this would be great.
I use IsBoxer and could use the repeater region to overlay the "Jamba Team" section for healing.

I would be able to remove grid / healbot and free up UI space. I have yet to check out the lua code, so am unsure if this is possible. Just thought I would make a post here as it may be usefull.

Thanks again.

Daeri
03-11-2010, 04:24 PM
Translation done. There might be some minor changes to be done after I've submitted my work to the French speaking community.

However I've tried my modified version of the addon but it still shows in-game in English (although the "core:profiles" tab is in French and has always been). I can't figure out a way to see my changes ingame, still trying. I guess there's something to change in a config file to tell the addon which language to use ?

I've hosted my preliminary work here : http://www.chez-cheos.org/jamba/Jamba-0.5d-fr.zip (please be gentle to not download it if you don't need it because I have limited bandwidth ;))

An update on this subject : thanks to the French speaking multiboxing community, the translation of the addon has very well progressed and is now almost complete saved a few technicals issues that should be very easy to solve on your part ;) :
- as the translation is not automatically enabled yet, we figured out a way to test our work ingame using an awful hack :D
- a few text areas could be enlarged a little as the translated text is currently cut even though here is available room on the configuration panel. See example below :
http://i64.servimg.com/u/f64/11/04/63/29/th/jamba-10.jpg (http://www.servimg.com/image_preview.php?i=35&u=11046329)
- in the displayTeam module, the name of the blizzard dialog background is included in the translation file, but it seems it shouldn't as things got messed up when I translated that text.
- not sure if it would be also be possible to make it possible to translated titles of the modules as seen in the left panel of the configuration screen ?

Jafula, thanks again for that great addon and for offering it to the community :)

bbj
03-12-2010, 03:02 AM
Is there any chance that Jamba can copy my bartender-4 config to my other toons ?
I must say though, in the last year ( about the last time i played ) jamba has shown a lot of improvement. Im impressed.....

JohnGabriel
03-12-2010, 03:45 AM
Cant all the directories be placed into one main directory? Takes up alot of room in the addon directory and the addon list. Would be easier if it was just a jamba directory.

jeepdriver
03-14-2010, 08:29 PM
Would you happen to be using the WIM addon?
If so, it's in the WIM settings.

Nope, still using the same addons I was using when it worked correctly last time...dunno what it could be, just started noticing it when I went to the newest version :/

Maxion
03-16-2010, 09:05 PM
Nope, still using the same addons I was using when it worked correctly last time...dunno what it could be, just started noticing it when I went to the newest version :/

Now that I think about it, if you have unbound the default key to reply to whispers on your alt, but still have it bound on your main, and used it while forgetting to pause your key broadcasting, when you hit enter to send the message, your alt will open their chat input. (since the R didn't do it for them, the enter did).

I know I've made this mistake several times.

jeepdriver
03-17-2010, 07:20 AM
Now that I think about it, if you have unbound the default key to reply to whispers on your alt, but still have it bound on your main, and used it while forgetting to pause your key broadcasting, when you hit enter to send the message, your alt will open their chat input. (since the R didn't do it for them, the enter did).

I know I've made this mistake several times.

Hmmm, didnt think of that, Ill check that this weekend when Im able to play. Thanks for the info Max :)

Mortiasis
03-23-2010, 10:01 AM
Greetings.
First of all thanks for a wonderfull addon. This one is indeed a life saver.

I am a first time user of this addon, and I need some help with the proc settings. I want to see procs from my slaves on my main screen.

So far I have gotten clearcasting from the druid to work, but my mage Hot Streak isnt working at all.

Is it me that completly misses an obvious thing or is it a strange error or something?

Jafula
03-23-2010, 05:33 PM
Greetings.
First of all thanks for a wonderfull addon. This one is indeed a life saver.

I am a first time user of this addon, and I need some help with the proc settings. I want to see procs from my slaves on my main screen.

So far I have gotten clearcasting from the druid to work, but my mage Hot Streak isnt working at all.

Is it me that completly misses an obvious thing or is it a strange error or something?

Blizzard changed the way the Hot Streak and other procs were reported in the combat log. This means that Jamba-Proc no longer works correctly. I'd like to fix it some day, but in the mean time, I suggest you do not use Jamba-Proc, but use MSBT instead.

Here is a video of how to set it up team procs with MSBT.

http://www.youtube.com/watch?v=Fvt-cmKWWbY&feature=youtube_gdata

Hope that helps!

Jafula
03-23-2010, 05:35 PM
Cant all the directories be placed into one main directory? Takes up alot of room in the addon directory and the addon list. Would be easier if it was just a jamba directory.

Nope sorry, they need to be in seperate directories as some people don't use all the functionality and like to be able to disable the modules they don't use. This is the most user firendly way to do this.

Jafula
03-23-2010, 05:36 PM
Is there any chance that Jamba can copy my bartender-4 config to my other toons ?
I must say though, in the last year ( about the last time i played ) jamba has shown a lot of improvement. Im impressed.....

Sorry, Jamba cannot move configs from one toon to another for non-Jamba addons (like Bartender).

You might like to check out the curse.com premium client. If you pay for it, you can copy configs from one place to another. I think if you set up your wow games in the curse client, it might be able to do this. Please note, I'm not 100% sure about this, you'll need to check it out yourself.

Glad you like Jamba! Thanks for the praise.

QuantumX
03-24-2010, 06:02 AM
Just wanted to stop by and thank you for such a great addon... it has to be the single most important multibox mod ever!

Maxion
03-25-2010, 01:59 PM
Just a small issue I've noticed with jamba right after logging on (after waiting for all addons, including jamba, to load completely):
Sometimes after logging on, the team display is not getting populated with the whole team (usually either characters, or 3 out of 5) and then hitting my "/jamba-team invite" macro only invites the characters currently displayed in the list (either none or the other two in the example above).
And the only way to get the whole team invited is to either disband and try again (in the case of partial invites) or to open the jamba-team config menu and hit the invite button manually (in the case of no invites happened).

Please see if you can fix this :)

Also, eagerly anticipating the next update, thanks for a great addon! ^^

Nsaeyn
03-25-2010, 02:07 PM
I was wondering if with the advent of the new 3.3.3 battleground system if something could be added to the Jamba addon for battleground ques. Just like how you can control quests/tracking maybe something that can control battleground queing and entering even with macros.

Thanks for a great addon

jwolfley
03-25-2010, 09:08 PM
in version 4 there was a feature jamba-target that used raid icons.

is there a way to do this in version 0.5d?

i suspect the macro function would work. but i cant figure out how to use a raid icon as a substitution variable. this function is certainly useful so i must be missing something.

ty,
jlw.

ghonosyph
03-29-2010, 07:39 AM
Hey jamba! Love the add on, but having huge issues with jamba proc. Is there any way to make the proc portion customizable ? I really wanna move the bars and change their color and positioning, ie vertical instead of horizontal lol. Is there any way you can make this happen for us? With the 3 selections we have available its always right in the way of my field of vision hehe

Maxion
03-29-2010, 05:42 PM
Hey jamba! Love the add on, but having huge issues with jamba proc. Is there any way to make the proc portion customizable ? I really wanna move the bars and change their color and positioning, ie vertical instead of horizontal lol. Is there any way you can make this happen for us? With the 3 selections we have available its always right in the way of my field of vision hehe

Can't you move it with MoveAnything? at least? (haven't tried it myself)

Kysali
03-30-2010, 05:01 PM
--Ello!

Been a while since I posted, (had to quit for a while, recently picked back up and started 3 new shammys). Anyways, reinstalled Jamba, and noticed suddenly I wasn't able to see party/whispers/loot/etc. I went ahead and did a 50/50 check, then narrowed it down to jamba. Somethings causing it to not show messages. Anyone else see this problem?

--Kysa

Maxion
03-30-2010, 10:02 PM
--Ello!

Been a while since I posted, (had to quit for a while, recently picked back up and started 3 new shammys). Anyways, reinstalled Jamba, and noticed suddenly I wasn't able to see party/whispers/loot/etc. I went ahead and did a 50/50 check, then narrowed it down to jamba. Somethings causing it to not show messages. Anyone else see this problem?

--Kysa


Did you get the newest version and set the team up properly on everyone and the related modules for the functions you mentioned?

Kysali
03-30-2010, 11:06 PM
Did you get the newest version and set the team up properly on everyone and the related modules for the functions you mentioned?

._. There's functions to hide the different chat types? >.< Last I remember it never hid those, but I'll go double check to see now that I'm awake.

--Think i must be blind, I don't see anything..anywhere that shows 'HIde party/whisper/loot/say/guild messages.. And yes I'm using the newest version.

Edit 2: Nevermind, I'mma blonde =facepalm= ~_~ Sorry bout that

Maxion
03-31-2010, 04:07 AM
._. There's functions to hide the different chat types? >.< Last I remember it never hid those, but I'll go double check to see now that I'm awake.

--Think i must be blind, I don't see anything..anywhere that shows 'HIde party/whisper/loot/say/guild messages.. And yes I'm using the newest version.

Edit 2: Nevermind, I'mma blonde =facepalm= ~_~ Sorry bout that



Sounds like it was your wow chat settings?

Kysali
03-31-2010, 06:41 AM
Sounds like it was your wow chat settings?

No, actually, or at least that's not what I messed with to get everything back up. Apparently..I had turned jamba-communications off, and that's what was hiding everything. Turned it back on, turned off the debug..thing (It was spamming me to death) pushed a channel to everyone, relogged and it worked o.o''... so.. I guess that works. lol. Thanks again for replying >.< I Need to try + have less blonde moments.

Maxion
03-31-2010, 01:44 PM
Yeah.. debug mode is not something we want to have on normally

Jafula
04-07-2010, 06:49 PM
Version 0.5e now available for download.

Download and more information: http://wow.jafula.com/addons/jamba

Changes in 0.5e

Translations


French translations by Daeri from dual-boxing.fr.

Jamba-Quest


Quest reward selection to automatically choose best reward for toon option will now halt when a reward item type is rare (blue colour) or of a higher type and allow the player to choose the reward.

Daeri
04-08-2010, 04:23 AM
Great ! And thanks again Jafula for having made this possible :) Of course feel free to notify me whenever you add or change change any text in the addon. I'll be happy to translate these as well.

Jafula
04-08-2010, 05:33 AM
Great ! And thanks again Jafula for having made this possible :) Of course feel free to notify me whenever you add or change change any text in the addon. I'll be happy to translate these as well.

Sweet as, I have a couple of new modules in mind to bring 0.5 up to the full functionality of 0.4, so you'll probably be hearing from me soon.

valle2000
04-12-2010, 05:37 PM
This Jamba addon seems wonderful, and if I soon start playing 5 toons I can really see it will be able to make many things much easier. Are there any risks, is it 100% legal and not interfering in any way with Blizzard rules?

Jafula
04-12-2010, 09:13 PM
This Jamba addon seems wonderful, and if I soon start playing 5 toons I can really see it will be able to make many things much easier. Are there any risks, is it 100% legal and not interfering in any way with Blizzard rules?

There has been a bit of debate about this is the past, you can search the forums if you are interested.

My humble opinion:

It's all good. Addons can only run code that Blizzard allows. Have fun!

valle2000
04-19-2010, 12:26 PM
How do I send chat snippets? I have tested but it only sends my command, not the actual text.
If I have a snippet called mb do I only write !mb in my whisper to send it, or am I missing something here? When doing this my receiver only get !mb as a whisper...

Jafula
04-19-2010, 09:44 PM
How do I send chat snippets? I have tested but it only sends my command, not the actual text.
If I have a snippet called mb do I only write !mb in my whisper to send it, or am I missing something here? When doing this my receiver only get !mb as a whisper...

Hmmm, the way I originally built chat snippets was that they only worked when you replied to a slave toon that someone else had whispered, which was just plain lame!

After reading your question and seeing how limiting the functionality was, I changed it so that what you are trying to do will work. You will need Jamba 0.5f which has just been released. You will have to go into the Jamba-Talk settings and check the "Enable Chat Snippets" box.

Now typing /w toon !mb will send your chat snippet text. The snippet command will only work on its own; i.e. trying to send "blah blah !mb blah blah" will not work. You need to send "!mb" only.

Please let me know if this works for you!

Cheers,
Jafula.

Jafula
04-19-2010, 09:45 PM
Jamba 0.5f released.


Jamba-Talk

Chat snippets now need to be enabled, by checking the check box that says "Enable Chat Snippets". Chat snippets can be whispered without need to reply to someone. For example a chat snippet called "mb" with the text explaining about multiboxing can be whispered by typing: /w toon !mb

Jamba-Quest


Fixed a bug with auto quest accepting which happened due to a change in the wow api for 3.3.3.

BlueGriffon
04-20-2010, 02:15 AM
I loaded Jamba 0.5d just last week and have been having a ball with it! I haven't had the opportunity to play with chat snippets yet, but the change log for 0.5f has gotten me interested. But I'm not sure of the syntax from the documentation and the change log.

The new syntax of "/w toon !mb" (where mb is a chat snippet that described multi-boxing) looks simple and clear... but who exactly is "toon"? Is this just someone out of the blue that my main wants to send a whisper to (without first having received a message by the main or any of the slaves)? Can a slave initiate a whisper with a chat snippet (from the main screen)?

The syntax of "/w slave @bob !mb" (where the main replies to a slave that someone else had whispered to) seems clear enough... but I'm not sure why the "@bob" part is required. From what I can tell, the normal operation of Jamba is the "Forward Whispers and Relay" (forwards a whisper directed to a slave to the master, and then a reply to the slave from the master will cause the slave to reply to the original whisperer with the master's reply). So with this rule, I would imagine that "/w slave !mb" (with the "/w slave" part being filled in via the press of the key bound to "reply") would do the trick... and would be a godsend if "bob" has one of those funky special ascii character names.

valle2000
04-20-2010, 04:49 PM
Hmmm, the way I originally built chat snippets was that they only worked when you replied to a slave toon that someone else had whispered, which was just plain lame!

After reading your question and seeing how limiting the functionality was, I changed it so that what you are trying to do will work. You will need Jamba 0.5f which has just been released. You will have to go into the Jamba-Talk settings and check the "Enable Chat Snippets" box.

Now typing /w toon !mb will send your chat snippet text. The snippet command will only work on its own; i.e. trying to send "blah blah !mb blah blah" will not work. You need to send "!mb" only.

Please let me know if this works for you!

Cheers,
Jafula.
Fanastic, now it works great! Thanks!
This addon is fantastic, I just sent you a donation. Keep up the great work. :)

Another question/improvement.
Any chance you can allow pets to also be shown in the Jamba team list, and an option to remove the standard party portraits so only the Jamba team list can be used instead?

Jafula
04-20-2010, 08:14 PM
The new syntax of "/w toon !mb" (where mb is a chat snippet that described multi-boxing) looks simple and clear... but who exactly is "toon"? Is this just someone out of the blue that my main wants to send a whisper to (without first having received a message by the main or any of the slaves)?

Yes, "toon" is anyone you want to whisper to. You do not need to have received a whisper before you can do this. You can initiate this from any toon (master/slave).


Can a slave initiate a whisper with a chat snippet (from the main screen)?

When you say "main screen", I assume you mean the master. To get a slave to whisper someone from the master screen, you can type on the master:

/w slave @someone my message to someone from slave

If you want to send a chat snippet that has a name of mb (typing on master via slave):

/w slave @someone !mb



The syntax of "/w slave @bob !mb" (where the main replies to a slave that someone else had whispered to) seems clear enough... but I'm not sure why the "@bob" part is required.

@bob is optional and you can use it to tell the slave to whisper a particular person (in this case bob) rather than the last person that whispered them.


From what I can tell, the normal operation of Jamba is the "Forward Whispers and Relay" (forwards a whisper directed to a slave to the master, and then a reply to the slave from the master will cause the slave to reply to the original whisperer with the master's reply). So with this rule, I would imagine that "/w slave !mb" (with the "/w slave" part being filled in via the press of the key bound to "reply") would do the trick... and would be a godsend if "bob" has one of those funky special ascii character names.

Yes, if a slave forwards a whisper to your master and you reply to your slave, the slave forwards your reply onto the orginal sender, and you can use a chat snippet in this case.

Which is actually the original design of the system, the addition I made yesterday was to let chat snippets be used in all whispers, not just when replying to someone via a slave (from the master).

Jafula
04-20-2010, 08:27 PM
Fanastic, now it works great! Thanks!
This addon is fantastic, I just sent you a donation. Keep up the great work. :)

Another question/improvement.
Any chance you can allow pets to also be shown in the Jamba team list, and an option to remove the standard party portraits so only the Jamba team list can be used instead?

Sweet, thanks for the donation! :):):)

I don't play a pet class, so I have never had the need. I've put your request on the list of things to do here:

http://wow.curseforge.com/addons/jamba/tickets/84-add-pets-to-jamba-display-team/

I don't know how to remove the party portraits (I'm sure there is a way). I'm trying to make sure Jamba doesn't become a party portrait addon, because that is a lot of work and there are plenty of good addons out there already that do a great job.

Something I would like to do is integrate Jamba into PitBull or XPerl. Feehza has posted some code which you can use to setup a custom group in Pitbull here:

http://www.dual-boxing.com/showthread.php?t=29654

I think, if I was going to spend time on portraits, it would be doing more integration...

valle2000
04-21-2010, 01:53 PM
Under Core Team there is an option "override: set to group loot if stranger in group". Would it be possible to make the override only activate if I actually do invite real strangers, not when inviting a player currently in my friend list? When boxing I always want to use free for all, but I want it also when playing with my real life friends.

alcattle
04-22-2010, 03:24 AM
Another question/improvement.
Any chance you can allow pets to also be shown in the Jamba team list, and an option to remove the standard party portraits so only the Jamba team list can be used instead?
What do you need to see on pets? If it is HP, I see them in VuhDo. Most of the time I don't want to see them.

Maxion
04-22-2010, 04:37 AM
For some reason, broadcasting of abandoning quests does not work for me, and has not in quite a while. (using the jamba quests buttons)
Are you aware of this being a problem Jafula?
Or am I the only one with this problem?

alcattle
04-22-2010, 06:31 AM
Are you using the default Quest UI? I use other UI and abandon never works. Maybe we can put our heads togerher (to make one)

Jafula
04-22-2010, 06:19 PM
For some reason, broadcasting of abandoning quests does not work for me, and has not in quite a while. (using the jamba quests buttons)
Are you aware of this being a problem Jafula?
Or am I the only one with this problem?

Just tried broadcasting abandoning a quest (using Jamba-0.5f) and it works perfectly for me.

I use the default UI. The only quest mod I use is EveryQuest.

Some suggestions:

Double check all your toons are in the team list (on all toons). Try disabling other addons until the functionality works.

Let me know how you get on.

Jafula
04-22-2010, 06:23 PM
Under Core Team there is an option "override: set to group loot if stranger in group". Would it be possible to make the override only activate if I actually do invite real strangers, not when inviting a player currently in my friend list? When boxing I always want to use free for all, but I want it also when playing with my real life friends.

Will see what I can do:

http://wow.curseforge.com/addons/jamba/tickets/85-add-override-options-to-loot-change/

valle2000
04-27-2010, 11:57 AM
One more suggestion :)
Would it please be possible to have the slave autoaccept trades which are initiated by team master?

Jafula
04-27-2010, 10:20 PM
One more suggestion :)
Would it please be possible to have the slave autoaccept trades which are initiated by team master?

Sorry, this cannot be done because Blizzard have protected the function that accepts trades. You have to use a hardware event (key press/mouse click) to accept trades.

JackBurton
04-27-2010, 11:24 PM
One more suggestion http://www.dual-boxing.com/images/smilies/smile.gif
Would it please be possible to have the slave autoaccept trades which are initiated by team master?

/script AcceptTrade();
/script RetrieveCorpse();
/run UseSoulstone()
/script AcceptResurrect()
/script ConfirmSummon()

JackBurton
04-27-2010, 11:39 PM
Im having trouble with my team display. When my guys are following me they dont lite up green.

also a team display request: display if teammember is mounted or not. sometimes i fly off noticing one of my toons didn't mount up. and he falls off a cliff or gets aggro.

Daeri
04-28-2010, 02:34 AM
Im having trouble with my team display. When my guys are following me they dont lite up green.

also a team display request: display if teammember is mounted or not. sometimes i fly off noticing one of my toons didn't mount up. and he falls off a cliff or gets aggro.

+1. This sometimes happens to me too :p In my case, this happens when, for wathever reason, one toon gets out of combat a few seconds after the main character. But since there's no easy way to know I summon the flying mount too early.

Jafula
04-30-2010, 12:17 AM
Jamba 0.5g released!

Jamba-Proc


Overhauled - can now move location of bars, set bar texture, font, size.
Procs are now based on spell ID rather than name.
Can specify proc colour / sound on a per tag basis.
Way better, check it out!

Jamba General Bug Fix


Fixed an issue with textures no longer stretching due to a change in the wow api for 3.3.3.

Jamba-Team


"Set group loot if stranger in group" option now has sub option which if checked will consider that friends (in friends lists) are not strangers

Jafula
04-30-2010, 12:22 AM
Under Core Team there is an option "override: set to group loot if stranger in group". Would it be possible to make the override only activate if I actually do invite real strangers, not when inviting a player currently in my friend list? When boxing I always want to use free for all, but I want it also when playing with my real life friends.

Done. You can get this feature in 0.5g. The option is below the orginal option and is called "Friends Are Not Strangers". Check it to get your desired behaviour.

:-)

Jafula
04-30-2010, 12:24 AM
Im having trouble with my team display. When my guys are following me they dont lite up green.

also a team display request: display if teammember is mounted or not. sometimes i fly off noticing one of my toons didn't mount up. and he falls off a cliff or gets aggro.

Ok, it's on the list of things todo:

http://wow.curseforge.com/addons/jamba/tickets/86-add-mount-status-to-team-display/

Jafula
04-30-2010, 12:43 AM
Starting a Jamba-Proc discussion over here for those that are interested...

http://www.dual-boxing.com/showthread.php?t=29868

hohner
05-01-2010, 07:59 AM
Sometimes when I mouse click + drag to pan (left mouse) or change direction (right mouse) nothing happens. My cursor simply moves across the screen.
The problem seems to be quite random, sometimes it works, sometimes it doesn't.
I have diagnosed the problem to be Jamba 0.5g (I haven't tried previous versions) by uninstalling all addons. With no addons installed the problem is gone. Install Jamba only, and the problem is back.

Daeri
05-01-2010, 09:29 AM
Sometimes when I mouse click + drag to pan (left mouse) or change direction (right mouse) nothing happens. My cursor simply moves across the screen.
The problem seems to be quite random, sometimes it works, sometimes it doesn't.
I have diagnosed the problem to be Jamba 0.5g (I haven't tried previous versions) by uninstalling all addons. With no addons installed the problem is gone. Install Jamba only, and the problem is back.

Got this issue as well. It seems related to the new proc bars. It seems that the handle is still on the screen even when invisible ? I could workaround it by moving the bar from the center of the screen to one corner so that I don't accidentally click on the bar anymore when trying to move the camera.

Tin
05-01-2010, 12:32 PM
same problem with the mouse

Jafula
05-01-2010, 05:06 PM
Sometimes when I mouse click + drag to pan (left mouse) or change direction (right mouse) nothing happens. My cursor simply moves across the screen.
The problem seems to be quite random, sometimes it works, sometimes it doesn't.
I have diagnosed the problem to be Jamba 0.5g (I haven't tried previous versions) by uninstalling all addons. With no addons installed the problem is gone. Install Jamba only, and the problem is back.


Got this issue as well. It seems related to the new proc bars. It seems that the handle is still on the screen even when invisible ? I could workaround it by moving the bar from the center of the screen to one corner so that I don't accidentally click on the bar anymore when trying to move the camera.


same problem with the mouse

Ah, yes, the proc bar is still actively taking mouse input. My bad. I'll change it so that you can only move the bar when showing the test bars and that should fix the mouse problem. I've got the updated French translations from Daeri, so I'll make a release now with this fix.

Jafula
05-01-2010, 06:10 PM
Jamba 0.5h Released

Changes:

Jamba-Proc


The proc anchor bar will no longer consume mouse clicks (unless showing test bars)
Updated French translations from Daeri.

Jamba-Team

Can now see the last checkbox in the team configuration screen (it was hidden by a bug in 0.5g).
Updated French translations from Daeri.

Jafula
05-01-2010, 07:39 PM
Jamba on wow.curse.com! Woot!

http://www.dual-boxing.com/showthread.php?t=29896

TiSiViX
05-23-2010, 01:23 PM
I had a feature request I'd like to run by you.

Being slightly OCD, I like all my stuff to line up on my various toons. I love the push feature, and was wondering if a push feature could be implemented to push the window positions to other toons?

Milenko
06-01-2010, 04:22 PM
really need your help, my head is about to explode. ok i had it working before, but somehow i messed it up :(

my problem is my shamen keeps following me in combat, when he is supposed to be ranged caster, he breaks cast mid spells if i move on my pally tank, i had it setup fine so when he got into combat he stayed still (sometimes he wouldn't be facing the mob so i would have to drag to mod in front of him but that was fine)

but i broke it, i,ve tryed the slash commands to turn strobing off " /jamba-follow strobeoff all " but it still doesn't work :(

coglistings
06-01-2010, 04:30 PM
either your shammy doesn't have the proper "all" in its tag list in your case or there is something out of place with a setting on your shammy, can attempt a repush of that config page to him/her but as I think about it, you are probably missing the "all" tag on your shammy

GL :)

Milenko
06-01-2010, 05:31 PM
this really is driving me nuts, i had it fine before :( now its broke i done something i don't know what, i,ve turned off strobing, but when i have autofollow after combat on its autofollow 24/7 never leaves me alone :(

Milenko
06-01-2010, 05:42 PM
btw cog the all/justme/slave tags are there by default, and i just tested they can't be removed

coglistings
06-02-2010, 01:59 AM
well, this is going to sound strange but i'll recommend it anyway. add another tag to your entire team, ie "pleasework" and assign that tag to everyone. then set pleasework as the tag the jamba-follow goes off of. If that works, then praise the gods as we would say and term the call :D

if that doesn't do it, then you can always take the bliz tech approach and delete the associated toon's wtf folder.

jafula would have to confirm but I think that there is a hidden key binding that he uses to break follow, ie down arrow or something. If your bad toon had that keybinding remapped accidently, then that would break jambas ability to break follow. reset your keybindings for that toon before you do the wtf and a repush of jamba settings.

gl :)

Jafula
06-02-2010, 07:10 AM
well, this is going to sound strange but i'll recommend it anyway. add another tag to your entire team, ie "pleasework" and assign that tag to everyone. then set pleasework as the tag the jamba-follow goes off of. If that works, then praise the gods as we would say and term the call :D

if that doesn't do it, then you can always take the bliz tech approach and delete the associated toon's wtf folder.

jafula would have to confirm but I think that there is a hidden key binding that he uses to break follow, ie down arrow or something. If your bad toon had that keybinding remapped accidently, then that would break jambas ability to break follow. reset your keybindings for that toon before you do the wtf and a repush of jamba settings.

gl :)

Thanks for helping out coglistings; there is no way for an addon to stop following. An addon can start following, but not stop it. Jamba can stop strobing follow, but once that is done, you still need to press a movement / jump / sit to stop following.

Jafula
06-02-2010, 07:16 AM
really need your help, my head is about to explode. ok i had it working before, but somehow i messed it up :(

my problem is my shamen keeps following me in combat, when he is supposed to be ranged caster, he breaks cast mid spells if i move on my pally tank, i had it setup fine so when he got into combat he stayed still (sometimes he wouldn't be facing the mob so i would have to drag to mod in front of him but that was fine)

but i broke it, i,ve tryed the slash commands to turn strobing off " /jamba-follow strobeoff all " but it still doesn't work :(


this really is driving me nuts, i had it fine before :( now its broke i done something i don't know what, i,ve turned off strobing, but when i have autofollow after combat on its autofollow 24/7 never leaves me alone :(

1. Make sure you are using the latest version of Jamba, as there have been several bug fixes for follow.
2, Make sure no other addons are enabling follow as well. For example, ISBoxer can /follow for you through its interface and in game addon.
3. If you want everyone but your caster to follow, tag every other toon as "melee"; then issue the command: /jamba-follow strobeonme melee. Make sure your caster does not have this tag.

Still not working after checking this and coglistings advice? Write back and I will try and help some more!

Jafula
06-02-2010, 07:20 AM
I had a feature request I'd like to run by you.

Being slightly OCD, I like all my stuff to line up on my various toons. I love the push feature, and was wondering if a push feature could be implemented to push the window positions to other toons?

Hmmm, I deliberately kept the windows settings out as like having them in different spots on my slaves vs my master. I don't have this issue anymore as I use ISBoxer now, so I could push the settings through.

I'll see if I can add a seperate button for the window postions so as not too annoy anyone who relies on this feature. I assume you want both the display team and item bar window positions?

Catamer
06-04-2010, 08:41 PM
my team display is not showing the rest of the team, it seems to only display the main character on that screen.
any ideas what would cause this?

wokka
06-05-2010, 06:06 PM
Ok, it's on the list of things todo:

http://wow.curseforge.com/addons/jamba/tickets/86-add-mount-status-to-team-display/

Jafula, you didn't respond to his first item:


Im having trouble with my team display. When my guys are following me they dont lite up green.

Back in version .4, you had mentioned that strobing was causing the follow display not to update properly. Is this still the case? The follow indicator never seems to sync back up, even after over an hour of playing and the guys following using strobing.

Perhaps a feature request to occasionally resync things, and perhaps another to do a manual sync of things between the master/slaves?

Thanks for the great software, and if you need a bounty to add these features, I'd be willing to pony up some dough, or just donate if you prefer that.

Thanks again

Jafula
06-06-2010, 11:11 PM
my team display is not showing the rest of the team, it seems to only display the main character on that screen.
any ideas what would cause this?

Has it worked previously? Your team not being in the team list on the affected toon would cause this.

Jafula
06-06-2010, 11:16 PM
Jafula, you didn't respond to his first item:



Back in version .4, you had mentioned that strobing was causing the follow display not to update properly. Is this still the case? The follow indicator never seems to sync back up, even after over an hour of playing and the guys following using strobing.

Perhaps a feature request to occasionally resync things, and perhaps another to do a manual sync of things between the master/slaves?

Thanks for the great software, and if you need a bounty to add these features, I'd be willing to pony up some dough, or just donate if you prefer that.

Thanks again

When you are follow strobing, the follow indicator is turned off. Otherwise the addon channel would be flooded with follow on/off messages every second.

Settings don't go out of sync by themselves and auto resync seems overkill.

You are welcome re Jamba. Feel free to donate at any time! :-)

Erron
06-07-2010, 11:31 AM
I find the follow indicator really helpful.

I wish there were a way to link that indicator to other unit frame addon's.

Not that I don't like the Jamba team display, just looking to reduce the amount of UI clutter.

Any chances of this working with other's mods?

Multibocks
06-07-2010, 11:49 AM
Jafula my team does not display at all. The first time I installed the newest release it worked, but now when I log in it doesn't even show my team as online( not even the master!)

Maxion
06-07-2010, 07:31 PM
Jafula my team does not display at all. The first time I installed the newest release it worked, but now when I log in it doesn't even show my team as online( not even the master!)

Make sure they have the same communications channel (or change it to a custom one) then relog.
Or tried that already?

Jafula
06-07-2010, 08:12 PM
I find the follow indicator really helpful.

I wish there were a way to link that indicator to other unit frame addon's.

Not that I don't like the Jamba team display, just looking to reduce the amount of UI clutter.

Any chances of this working with other's mods?

The other mod authors would have to build this into their mods.

coglistings
06-07-2010, 10:01 PM
Make sure they have the same communications channel (or change it to a custom one) then relog.
Or tried that already?


/agree with poster

the default channel is sometimes screwed with. You can debug by looking at your chat channels ingame, key o, chat tab gl :)

Daeri
06-08-2010, 02:52 AM
Do you think there could be a way to simplify the channel configuration part ? Nearly all jamba related questions we have on the French forums are about "main shows off-line" and other similar issues with the channel. It seems this is the same here as well. I have no real trouble with this myself (if I create a new team and one toon is shown offline in Jamba I will solve the problem within a few seconds) but it's often very difficult to get newcomers to understand the issue, how to investigate it and eventually how to get it solved :P The concept of a discussion channel doesn't seem very obvious to understand at first (but it's indeed a very nice and powerful solution to the communication problem). I've thought a bit about it but can't come up with a suggestion for an easier way to do this yet. Maybe an error message upon login that says "I can't find toon X in the communication channel despite being listed in the team, please check their channel settings" ?

Jafula
06-09-2010, 02:10 AM
Do you think there could be a way to simplify the channel configuration part ? Nearly all jamba related questions we have on the French forums are about "main shows off-line" and other similar issues with the channel. It seems this is the same here as well. I have no real trouble with this myself (if I create a new team and one toon is shown offline in Jamba I will solve the problem within a few seconds) but it's often very difficult to get newcomers to understand the issue, how to investigate it and eventually how to get it solved :P The concept of a discussion channel doesn't seem very obvious to understand at first (but it's indeed a very nice and powerful solution to the communication problem). I've thought a bit about it but can't come up with a suggestion for an easier way to do this yet. Maybe an error message upon login that says "I can't find toon X in the communication channel despite being listed in the team, please check their channel settings" ?

Good idea! I will add a toggle which turns the warning on/off and have it on by default; as having a toon offline can be a legitimate situation.

http://wow.curseforge.com/addons/jamba/tickets/87-warn-when-toon-in-team-but-not-in-channel/

rage
06-10-2010, 11:31 AM
how can i make the team clickable ?

Jafula
06-10-2010, 04:37 PM
how can i make the team clickable ?

You can't. What would you like to make clickable?

rage
06-11-2010, 05:17 AM
thetdisplay team.. would help a fucking lot ^^
never again struggleling around with pitbull lua chaning.. vor each lineup.. or grid custom group.. would makemy life and i guess the life of alot ppl alot easier :D

Jafula
06-11-2010, 05:58 AM
thetdisplay team.. would help a fucking lot ^^
never again struggleling around with pitbull lua chaning.. vor each lineup.. or grid custom group.. would makemy life and i guess the life of alot ppl alot easier :D

What parts of the display team? What action do you want to happen when you click on a particular part?

ElectronDF
06-11-2010, 07:55 AM
I would start at a whole line.
"Portrait" "Health" "Experience" "Power"
If you click anywhere on that line for a char, it selects that char.

It used to do that, and it was nice. Imgine you are in a BG and your team is spread out, you can select a person that is hurt to help heal them. You can select a person that is not near you to summon them out in the normal places. You can select a person with a bad debuff in a raid so you can fix it. It just helps so much to be able to pick a person on your team so you can do something to them.

Keybinds are fine for some people, but for things that happen once every 10-20 hours of game play, a click works for me.

rage
06-11-2010, 10:50 AM
well.. when i klick the name or health bar or anything related to that char i need to have him as target .. thats everything -.-

Multibocks
06-11-2010, 04:18 PM
Make sure they have the same communications channel (or change it to a custom one) then relog.
Or tried that already?

Ah I didn't think of trying that. Also how do I stop this spam when I'm in a random PuG:

You are now a passing on random loot x 10

This is in a random PuG and I can't get it to stop or let me be eligible for loot. Even after checking the option for strangers in group.

Jafula
06-11-2010, 04:29 PM
Ah I didn't think of trying that. Also how do I stop this spam when I'm in a random PuG:

You are now a passing on random loot x 10

This is in a random PuG and I can't get it to stop or let me be eligible for loot. Even after checking the option for strangers in group.

Goto to the Jamba - Core: Team options. Scroll all the way to the bottom of that and make sure that the option "Slaves Opt Out of Loot" is NOT selected. If it is selected, that is your problem. Otherwise, I'm not sure.

rage
06-11-2010, 04:42 PM
what about my problem ? ^^
and btw.. is there a command to invite my team ?.. i found one once but didnt work.. dont wann go to jamba and klick invite everytime ^:<

Poyzon
06-11-2010, 04:46 PM
what about my problem ? ^^
and btw.. is there a command to invite my team ?.. i found one once but didnt work.. dont wann go to jamba and klick invite everytime ^:<

http://wow.curseforge.com/addons/jamba/pages/slash-commands/

/jamba-team invite

Jafula
06-11-2010, 05:30 PM
what about my problem ? ^^<

Hmmm, I might put a fix in for you, so you can click on the display team and target the character you clicked on. Will release it today, so check back in 24 hours time for a new Jamba release.

Edit: Its done. Release to come.

Multibocks
06-11-2010, 07:13 PM
Goto to the Jamba - Core: Team options. Scroll all the way to the bottom of that and make sure that the option "Slaves Opt Out of Loot" is NOT selected. If it is selected, that is your problem. Otherwise, I'm not sure.

Ok, I guess if I'm going to PuG I should disable Jamba.

Jafula
06-11-2010, 07:30 PM
Ok, I guess if I'm going to PuG I should disable Jamba.

Wait, thats not good. Let's fix the problem. Was that option not selected for you?

ghonosyph
06-11-2010, 07:37 PM
jafula i have a similar issue, i often pug raids with several of my toons, and i have the same spam going on, whenever anyone zones in or out, or is invited to the group it spams the passing on loot garbage. Its a handy thing to notify, but it is really spammy at times. problem being, i WANT them to opt out of loot i just dont want them to spam me all afternoon about it.

Jafula
06-11-2010, 09:17 PM
jafula i have a similar issue, i often pug raids with several of my toons, and i have the same spam going on, whenever anyone zones in or out, or is invited to the group it spams the passing on loot garbage. Its a handy thing to notify, but it is really spammy at times. problem being, i WANT them to opt out of loot i just dont want them to spam me all afternoon about it.

Ah, thank you for explaining that. I have fixed the opt out of loot option so that it will only change when it actually needs to change. This should stop the spamming you are experiencing. Should be a new release within 24 hours.

rage
06-12-2010, 03:23 AM
nice nice nice thanks :D

and thanks for the command too.. got a similar but did not work -.-

Jafula
06-13-2010, 03:58 AM
Jamba 0.5i released, changes below:

General

* Text boxes associated with sliders will now cause the slider to update its value when enter is pressed.

Jamba-Proc

* Disabling the proc module from the Proc options will now work!
* Procs that you add using the GUI will now work!
* Procs no longer reappear after being deleted!

Jamba-Team

* Slaves opting out of loot will now stop telling you everytime a party member joins/leaves, party leader changes, etc.

Jamba-Display-Team

* Clicking on a toons portrait or bar in the display will target that toon.
* Team display location information is now pushed with other settings to all toons.
* Can now set the transparency of the team window.

Jamba-Item-use

* Item bar location information is now pushed with other settings to all toons.
* Can now set the transparency of the team window.

Tehmuffinman
06-13-2010, 11:15 AM
w00t!

rage
06-13-2010, 01:23 PM
does not work for me :<
the new barstyles work.. but still cant klick anything..

Jafula
06-13-2010, 03:22 PM
does not work for me :<
the new barstyles work.. but still cant klick anything..

Make sure you are using 0.5i. Also disable every other addon and see if it works then.

rage
06-13-2010, 05:00 PM
works fine :D thanks alot!
if u want some ideas how u could advance jamba in future.. i would make the display team thing a real unitframe solution with all the options other unitframes have :)

for examble the alignment of the different bars!

Akoko
06-13-2010, 10:17 PM
Since downloading the new Jamba, all the toons in my Jamba-team list are permanently offline, including the lead character. Can't group invite them or use any jamba-team actions. The only thing I changed was updating Jamba.

Jafula
06-13-2010, 11:39 PM
Since downloading the new Jamba, all the toons in my Jamba-team list are permanently offline, including the lead character. Can't group invite them or use any jamba-team actions. The only thing I changed was updating Jamba.

Change the core:communications channels on all toons. Make up your own channel name and password (no spaces) and enter this information seperately into each toons core:communications options. Seperately because these channel settings cannot be pushed. Then log out of all your toons and log them back in. Give it 30 seconds and they should all be able to see each other.

Let me know how you get on.

ashkir
06-14-2010, 04:06 AM
Apparently when I sign into my main account I get this often:


Message: ...erface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1410: attempt to index field 'db' (a nil value)
Time: 06/14/10 01:05:40
Count: 161
Stack: ...erface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1410: in function `SendHealthStatusUpdateCommand'
...erface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1402: in function `?'
...mba\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:147: in function <...mba\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:147>
[string "safecall Dispatcher[2]"]:4: in function <[string "safecall Dispatcher[2]"]:4>
[C]: ?
[string "safecall Dispatcher[2]"]:13: in function `?'
...mba\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:92: in function `Fire'
...face\AddOns\Jamba\Libs\AceEvent-3.0\AceEvent-3.0.lua:120: in function <...face\AddOns\Jamba\Libs\AceEvent-3.0\AceEvent-3.0.lua:119>

Locals: self = <table> {
SettingsChangeExperienceStatusWidth = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1127
SettingsUpdateExperienceAll = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1343
SettingsToggleShowPowerStatus = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1162
CancelTimer = <function> defined @Interface\AddOns\Jamba\Libs\AceTimer-3.0\AceTimer-3.0.lua:311
UpdateExperienceStatus = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1349
SecureHook = <function> defined @Interface\AddOns\Jamba\Libs\AceHook-3.0\AceHook-3.0.lua:339
UNIT_MAXHEALTH = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1405
SettingsToggleShowExperienceStatusValues = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1117
SettingsChangeHealthStatusWidth = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1152
totalMembersDisplayed = 0
SettingsToggleShowExperienceStatus = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1112
settingsDatabaseName = "JambaDisplayTeamProfileDB"
UpdateJambaTeamStatusBar = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:485
SetDefaultModulePrototype = <function> defined @Interface\AddOns\Jamba\Libs\AceAddon-3.0\AceAddon-3.0.lua:423
JambaSendMessageToTeam = <function> defined @Interface\AddOns\Jamba\JambaModule.lua:81
IsEnabled = <function> defined @Interface\AddOns\Jamba\Libs\AceAddon-3.0\AceAddon-3.0.lua:465
ScheduleTimer = <function> defined @Interface\AddOns\Jamba\Libs\AceTimer-3.0\AceTimer-3.0.lua:276
UNIT_POWER = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1480
SettingsChangeFollowStatusWidth = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1102
UnregisterMessage = <function> defined @Interface\AddOns\Jamba\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:181
SendHealthStatusUpdateCommand = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1409
hooks = <table> {
}
SettingsToggleShowExperienceStatusPercentage = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1122
SettingsChangeBackgroundStyle = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1072
SettingsChangeScale = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1057
SettingsUpdateBorderStyle = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:365
SetEnabledState = <function> defined @Interface\AddOns\Jamba\Libs\AceAddon-3.0\AceAddon-3.0.lua:438
Hook = <function> defined @Interface\AddOns\Jamba\Libs\AceHook-3.0\AceHook-3.0.lua:277
JambaModuleInitialize = <function> defined @Interface\AddOns\Jamba\JambaModule.lua:103
JambaConfigurationGetSetting = <function> defined @Interface\AddOns\Jamba\JambaModule.lua:132
SettingsToggleShowHealthStatus = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1137
SettingsToggleShowTeamListOnMasterOnly = <funct[/qu

jeepdriver
06-14-2010, 04:31 AM
Im getting the same error message as the guy above me...also half of the proc alert codes in Proc are gone, including my custom made ones :/ I can live without them, but I cant tell when my mage is proccing...but I can see when the druid procs...weird. and just downloaded the newest version off of curse if that helps any.

forgot to mention this...I hit the show test bars etc, just to make sure they hadnt moved and I get an error...although I have no idea how to put it on here :/

Jafula
06-14-2010, 09:21 PM
Apparently when I sign into my main account I get this often:


JambaModuleInitialize = <function> defined @Interface\AddOns\Jamba\JambaModule.lua:103
JambaConfigurationGetSetting = <function> defined @Interface\AddOns\Jamba\JambaModule.lua:132
SettingsToggleShowHealthStatus = <function> defined @Interface\AddOns\Jamba-DisplayTeam\JambaDisplayTeam.lua:1137
SettingsToggleShowTeamListOnMasterOnly = <funct[/qu

I think your WoW addons have been corrupted somehow. I recommend starting over with your Jamba installation. Delete all WTF files associated with Jamba, delete Jamba and reinstall the latest version of Jamba.

Also delete your cache files as well.

That should sort your problems out.

Jafula
06-14-2010, 09:23 PM
Im getting the same error message as the guy above me...also half of the proc alert codes in Proc are gone, including my custom made ones :/ I can live without them, but I cant tell when my mage is proccing...but I can see when the druid procs...weird. and just downloaded the newest version off of curse if that helps any.

forgot to mention this...I hit the show test bars etc, just to make sure they hadnt moved and I get an error...although I have no idea how to put it on here :/

Same advice for you; you should not be getting an errors when you turn on show test bars in proc. Also, sorry that you lost your procs. You should be able to add them back in after you reinstall (see below).

I think your WoW addons have been corrupted somehow. I recommend starting over with your Jamba installation. Delete all WTF files associated with Jamba, delete Jamba and reinstall the latest version of Jamba.

Also delete your cache files as well.

That should sort your problems out.

Iru
06-14-2010, 09:41 PM
Change the core:communications channels on all toons. Make up your own channel name and password (no spaces) and enter this information seperately into each toons core:communications options. Seperately because these channel settings cannot be pushed. Then log out of all your toons and log them back in. Give it 30 seconds and they should all be able to see each other.


The number of times this comes up, it really needs a FAQ

Akoko
06-14-2010, 10:19 PM
Change the core:communications channels on all toons. Make up your own channel name and password (no spaces) and enter this information seperately into each toons core:communications options. Seperately because these channel settings cannot be pushed. Then log out of all your toons and log them back in. Give it 30 seconds and they should all be able to see each other.

Let me know how you get on.

Seems to be working now. Thanks!

Khatovar
06-15-2010, 12:46 AM
The number of times this comes up, it really needs a FAQ

It's in the Jamba - Getting Started (http://www.dual-boxing.com/showthread.php?t=28573) thread now.

Jafula
06-15-2010, 02:18 AM
It's in the Jamba - Getting Started (http://www.dual-boxing.com/showthread.php?t=28573) thread now.

Yay! Thanks :-)

howster
06-15-2010, 08:53 PM
I have a question about Jamba. Or should i say request if this cant be done atm.
The thing is that i would like to know when my team is standing in something they should not stand in. Ie. Poison Pools, Death and Decay (deathwhisper in ICC) etc. Since i have set my setting to low on my slaves i can barely see if they stand in stuff like that.. Especially in ICC when Deathwhisper casts DnD on my slaves while i run with my tank to take care of adds and stuff like that.
Can this be done atm? Was thinking about perhaps like the way jamba proc module works.
Other than that I just love your addon and keep up the great work :D

alcattle
06-16-2010, 03:10 AM
You might try something like Deadly Boss mod, it tells you a lot about what the boos is/will do.

Daeri
06-16-2010, 09:06 AM
I think it should be possible to set up grid (or vuhdo) so that is shows an icon directly over the bar of a toon when it gets a given debuff ?

howster
06-16-2010, 10:14 AM
You might try something like Deadly Boss mod, it tells you a lot about what the boos is/will do.
I use DBM But my main is the tank.. While my dps/healer is all casters and does not stand where my main is i dont get notified on my main screen.. My 2nd screen has 4 wow windows up with my slaves.. And the text from DBM is at the highest but i still cant notice warning (small screen).. Would be way easier to just focus on my main screen and get the warning there.

Any way to do this?


I think it should be possible to set up grid (or vuhdo) so that is shows an icon directly over the bar of a toon when it gets a given debuff ?
Hmm.. I use vuhdo so might take a look in there.

Daeri
06-16-2010, 12:26 PM
I just checked ingame : under Vudho settings, there's a "debuffs" tab. You can add custom buffs/debuffs to the list and personalize the way each of them is shown ;)

Jafula
06-17-2010, 06:44 PM
From what I have been reading I think the easiest way to do this would be to try and forward messages from DBM that occur on your slaves to your master.

Edit: Here is a ticket in the todo list for it: http://wow.curseforge.com/addons/jamba/tickets/93-see-if-messages-from-dbm-can-be-forwarded-from-slaves/

roflstomp
06-19-2010, 02:57 PM
not sure where to put this but if u could make it so that if one of my chars goes idle in a bg it pops up on the masters screen. i hate ppl that report my slaves afk half the time i dont notice till its to late so a nice anoying sound and message in red would be nice.

rage
06-20-2010, 11:17 PM
hey jafula, its me again :D

i was just thinking about the awsomeness of things like toon pick same rewards as master..
so i thought they could follow master in some other decitions.. for example

- accept/decline battleground invite (normaly u have to do it with mouse repeater or klick in each windows but this will spread ur team in different groups..
- leave the battleground on finishing screen
- accept/decline tw invite
- release corps

or overall klick the same button as the master.. what ever is easier to achieve!
hope i gave u some inspirations :D

Wintershot
06-21-2010, 11:29 PM
not sure where to put this but if u could make it so that if one of my chars goes idle in a bg it pops up on the masters screen. i hate ppl that report my slaves afk half the time i dont notice till its to late so a nice anoying sound and message in red would be nice.

If your characters are inactive then they are leeching experience and honour from the battleground. The fact that they are following your master character around does not change this fact. Are you not using your slaves?

ElectronDF
06-22-2010, 10:55 AM
hey jafula, its me again :D

i was just thinking about the awsomeness of things like toon pick same rewards as master..
so i thought they could follow master in some other decitions.. for example

- accept/decline battleground invite (normaly u have to do it with mouse repeater or klick in each windows but this will spread ur team in different groups..
- leave the battleground on finishing screen
- accept/decline tw invite
- release corps

or overall klick the same button as the master.. what ever is easier to achieve!
hope i gave u some inspirations :D

Macros can do most of what you are asking for. Also there are addons that can do it (look for battleground addons). For the macro, the general idea (at work, so you can look it up in wiki).
/script AcceptBattlefieldPort(1,1)
It accepts the first BG that you signed up for.
/script LeaveBattleground()
It WILL kick you if you use it during a BG not just at the end. So make it a seperate button. I use a program that lets me send text to all my alts, so I just send that as a text.
/script RepopMe()
/script RetrieveCorpse()
1st releases you, 2nd is used when in ghost at your body. Pretty much just put AcceptBG, Repop and Retrieve in your accept all macro.
Not sure what "- accept/decline tw invite" is. But there is probably a /script Accept for it.

Hope that helps and good luck.

Owltoid
06-22-2010, 11:09 AM
If your characters are inactive then they are leeching experience and honour from the battleground. The fact that they are following your master character around does not change this fact. Are you not using your slaves?

Lol

My toons get marked inactive all the time, even though I'm definitely trying to be as active as possible. Perhaps one died and I'm trying to regroup my slaves which means one is standing solo for 90 seconds while I get back to them. Sometimes people just don't like seeing multiboxers and start telling everyone to mark you as inactive, even if you're leading in kills or healing.

The inactive buff does not mean people are leeching exp. Stop calling it a fact.

rage
06-22-2010, 12:19 PM
/script AcceptBattlefieldPort(1,1) is only thing i dont have at this time but, would be a bit more comfortable when it would be integrated in jamba..

Jafula
06-22-2010, 05:26 PM
not sure where to put this but if u could make it so that if one of my chars goes idle in a bg it pops up on the masters screen. i hate ppl that report my slaves afk half the time i dont notice till its to late so a nice anoying sound and message in red would be nice.

That should be easy to do. I'll add it to the Toon: Warning screen.

Edit: Ticket: http://wow.curseforge.com/addons/jamba/tickets/94-afk-warning/

Jafula
06-22-2010, 05:34 PM
hey jafula, its me again :D

i was just thinking about the awsomeness of things like toon pick same rewards as master..
so i thought they could follow master in some other decitions.. for example

- accept/decline battleground invite (normaly u have to do it with mouse repeater or klick in each windows but this will spread ur team in different groups..
- leave the battleground on finishing screen
- accept/decline tw invite
- release corps

or overall klick the same button as the master.. what ever is easier to achieve!
hope i gave u some inspirations :D

See below for the battleground invite. Thanks for the ideas! Most of these are probably better off as macros as some of them are protected; but the release corpse might be doable.

Functionality would be: if you release corpse on one, it tries to release on any of the others. I don't know the WoW api function for this call, if its not protected I might be able to add it in for you. No promises...

Edit: Ticket: http://wow.curseforge.com/addons/jamba/tickets/95-mirror-release-corpse/


/script AcceptBattlefieldPort(1,1) is only thing i dont have at this time but, would be a bit more comfortable when it would be integrated in jamba..

This one is It used to be in Jamba, but had to removed because Blizzard changed it to be protected and require a hardware event (key press/mouse click) to work. Addons cannot use this anymore :-(.

roflstomp
06-22-2010, 07:04 PM
thanks jafula every one that pvps will appreciate it i know us in legion of boom will

Jafula
06-23-2010, 09:30 PM
If you have any problems with Jamba and the new 3.3.5 patch, please post them here and I'll get to them asap.

shadewalker
06-24-2010, 04:01 PM
I just started playing around with the JAMABA Macro module, All i can say i wow...amazing stuff. This is going to make managing my team macros much easier. Keep up the great work Jafula. Oh, and no issues so far with 3.3.5

rage
06-25-2010, 12:15 AM
would be too awsome but ok release corps is still nice :D

Rusty
06-25-2010, 04:35 PM
Personally I would love it if Jamba (and all addons really) included another frame in the GUI called "Slash Commands"

For Jamba, you could either add it to the main info page, or on a help frame under Toon: Merchant, and it would include the contents of http://wow.curseforge.com/addons/jamba/pages/slash-commands/

Jafula
06-28-2010, 10:47 PM
Changes in 0.6

Jamba-Quest

* New Quest Watcher frame, watch quests from slaves on master.

Jamba-Toon

* New AFK warning.

Jamba-Display-Team

* Can now change background and border colours on team display.

Jamba-Item-Use

* Can now change background and border colours on the item bar display.

Maxion
06-28-2010, 10:50 PM
Sweet, the curse client already had it with version 0.6-2, I just had to hit the refresh button when you said you posted it ^^

Looks like some of the items in your list of changes got duplicated though.

Jafula
06-28-2010, 10:54 PM
Ah, thanks, will sort the list out.

Good you got 0.6-2 as 0.6 was missing all the modules; but its fixed now.

Owltoid
06-29-2010, 03:59 PM
Jafula,

Thanks again! Why does the push all settings not truly push all settings? For example, it used to not push the team list location. I've noticed that it doesn't push the Jamba request options because I need to go in and manually unclick the auto deny guild box. Do you have a list handy that tells which options are not pushed?

Also, I seem to remember in the past (6-12 months ago) that the health bars on the team list would not update as quickly as unit frames. Am I remembering incorrectly? If not, can you give a brief explanation of why it's different than unit frames?

Thanks!!!!!!

Jafula
06-29-2010, 06:06 PM
Jafula,

Thanks again! Why does the push all settings not truly push all settings? For example, it used to not push the team list location. I've noticed that it doesn't push the Jamba request options because I need to go in and manually unclick the auto deny guild box. Do you have a list handy that tells which options are not pushed?

Also, I seem to remember in the past (6-12 months ago) that the health bars on the team list would not update as quickly as unit frames. Am I remembering incorrectly? If not, can you give a brief explanation of why it's different than unit frames?

Thanks!!!!!!

Hey Owl,

The team list location and item bar location were deliberately not pushed until a recent update. Now all settings should get pushed, there are none that get left out. I can push the Toon: Request options just fine, so you might like to check your settings and make sure your team make up is correct.

In 0.4 the health bar updates were sent over the addon channel. This was so you could see health updates from toons outside party/raid. It was slow and filled the addon channel with too much traffic. In 0.5 I changed it to use regular events like unit frames do, which meant that it only works for party/raid. It should be as fast as the unit frames.

Hope that answers your questions!

Jafula.

Jafula
06-29-2010, 06:10 PM
I just started playing around with the JAMABA Macro module, All i can say i wow...amazing stuff. This is going to make managing my team macros much easier. Keep up the great work Jafula. Oh, and no issues so far with 3.3.5

Sweet, I love the macro stuff as well.


would be too awsome but ok release corps is still nice :D

I'll try and see if I can work that in at some stage.


Personally I would love it if Jamba (and all addons really) included another frame in the GUI called "Slash Commands"

For Jamba, you could either add it to the main info page, or on a help frame under Toon: Merchant, and it would include the contents of http://wow.curseforge.com/addons/jamba/pages/slash-commands/

Thats a good idea, will see what I can do.

Daeri
06-30-2010, 07:46 AM
Jafula, I've sent you a PM with the French translation of the new quest watcher module ;)

valle2000
06-30-2010, 01:51 PM
Would it be possible to make Jamba-Taxi to also work with portals?
If master clicks on a portal, slaves will as well (if standing close enough to the portal).

Owltoid
06-30-2010, 01:54 PM
Not a chance, I'm guessing.

Maxion
06-30-2010, 02:15 PM
Would it be possible to make Jamba-Taxi to also work with portals?
If master clicks on a portal, slaves will as well (if standing close enough to the portal).


Not a chance, I'm guessing.

Indeed, that requires a click in the playfield and is not a ui element, thus is a secure function which addons cannot do.

Maxion
06-30-2010, 04:41 PM
Jafula, could you enable clickthrough for the background of the quest watcher? Or at least add an option for it.
Right now, it makes the whole area of it's possible maximum space unclickable.

Also, the option to warn when a toon goes afk, turning it off does not work, it still warns.
In addition, I think those that wanted that warning wanted it for pvp, where you need to keep the toons from going afk, so a warning after it's already happened is pretty useless.
Or rather I think they wanted a warning if anyone get's the Inactive debuff, not an afk flag.

jeepdriver
07-02-2010, 02:18 PM
Is there anyway to move quest watcher from the center of the screen?

jeepdriver
07-02-2010, 02:19 PM
Never mind, figured it out 5 secs after I posted LOL

Jafula
07-02-2010, 06:37 PM
Jafula, I've sent you a PM with the French translation of the new quest watcher module ;)

Thanks Daeri, I'll add them in for the next release (about 3-4 days away).


Would it be possible to make Jamba-Taxi to also work with portals?
If master clicks on a portal, slaves will as well (if standing close enough to the portal).

As the others have said, there is no way to do this. Would be nice though, wouldn't it!


Is there anyway to move quest watcher from the center of the screen?

For others that might want to know, like other Jamba windows, hold down the ALT key and mouse left drag the title bar.

Jafula
07-02-2010, 06:43 PM
Jafula, could you enable clickthrough for the background of the quest watcher? Or at least add an option for it.
Right now, it makes the whole area of it's possible maximum space unclickable.

Also, the option to warn when a toon goes afk, turning it off does not work, it still warns.
In addition, I think those that wanted that warning wanted it for pvp, where you need to keep the toons from going afk, so a warning after it's already happened is pretty useless.
Or rather I think they wanted a warning if anyone get's the Inactive debuff, not an afk flag.

Thanks for the feedback!

Quest Watcher: Ok, I will see what I can do. Due to the way I have implemented the scrolling, this could be a little complicated, but I'll try my best (until I get bored) :-D.

AFK Warning: I must not have had enough coffee that day. I'll make sure the you can turn the warning off for next release. Unless I start a timer myself; I'm not going to know about AFK until it happens (and I think manging my own timer is overkill for this).

Inactive debuff: Ah, I don't PVP, so I didn't know about this. If someone can tell me the EXACT name of the debuff, I might be able to detect it and add a warning for that as well (hopefully you'll be able to turn this one off :-) ).

Maxion
07-03-2010, 02:17 AM
Thanks for the feedback!

Quest Watcher: Ok, I will see what I can do. Due to the way I have implemented the scrolling, this could be a little complicated, but I'll try my best (until I get bored) :-D.

AFK Warning: I must not have had enough coffee that day. I'll make sure the you can turn the warning off for next release. Unless I start a timer myself; I'm not going to know about AFK until it happens (and I think manging my own timer is overkill for this).

Inactive debuff: Ah, I don't PVP, so I didn't know about this. If someone can tell me the EXACT name of the debuff, I might be able to detect it and add a warning for that as well (hopefully you'll be able to turn this one off :-) ).

The debuff is called Inactive (http://www.wowhead.com/spell=43681).

santiagodraco
07-03-2010, 01:28 PM
Hi there,

I'm not sure if this is the proper thread for Jamba bugs/errors, so if not please point me in the right direction :)

I recently updated to the latest Jamba and I'm now seeing an error whenever someone sends me a tell with Jamba active. If I disable Jamba I see no errors. Here's the content of the error message:

Date: 2010-07-03 12:21:58
ID: 2
Error occured in: Global
Count: 1
Message: ..\AddOns\Jamba-Talk\JambaTalk.lua line 461:
attempt to index field 'db' (a nil value)
Debug:
(tail call): ?
(tail call): ?
Jamba-Talk\JambaTalk.lua:461: ?()
...Ons\Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:147:
...Ons\Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:147
[string "safecall Dispatcher[14]"]:4:
[string "safecall Dispatcher[14]"]:4
[C]: ?
[string "safecall Dispatcher[14]"]:13: ?()
...Ons\Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:92: Fire()
Ace3\AceEvent-3.0\AceEvent-3.0.lua:120:
Ace3\AceEvent-3.0\AceEvent-3.0.lua:119
AddOns:
Swatter, v3.1.14 (<%codename%>)
Ace2, v
Ace3, v
Achieved, v0.4
ACP, v3.3.3
ArkInventory, v3.02
AthenesUpgradeEstimator, v3.21
Atlas, v1.16.1
AtlasBattlegrounds, v1.16.1
AtlasDungeonLocs, v1.16.1
AtlasOutdoorRaids, v1.16.1
AtlasTransportation, v1.16.1
AtlasLoot, vv5.11.03
AtlasLootFu, vv5.11.03
AucAdvanced, v5.8.4723 (CreepyKangaroo)
AucFilterBasic, v5.8.4723 (CreepyKangaroo)
AucFilterOutlier, v5.8.4723.2531
AucMatchUndercut, v5.8.4723.2531
AucStatHistogram, v5.8.4723 (CreepyKangaroo)
AucStatiLevel, v5.8.4723 (CreepyKangaroo)
AucStatPurchased, v5.8.4723 (CreepyKangaroo)
AucStatSales, v5.8.4723.2842
AucStatSimple, v5.8.4723 (CreepyKangaroo)
AucStatStdDev, v5.8.4723 (CreepyKangaroo)
AucStatWOWEcon, v5.8.4723.2530
AucUtilAHWindowControl, v5.8.4723.3311
AucUtilAppraiser, v5.8.4723.2530
AucUtilAskPrice, v5.8.4723.3175
AucUtilAutoMagic, v5.8.4723.3142
AucUtilCompactUI, v5.8.4723.2530
AucUtilEasyBuyout, v5.8.4723.3583
AucUtilFixAH, v5.8.4723 (CreepyKangaroo)
AucUtilGlypher, v5.8.4723.2545
AucUtilItemSuggest, v5.8.4723.3108
AucUtilPriceLevel, v5.8.4723.2545
AucUtilScanButton, v5.8.4723.2530
AucUtilScanFinish, v5.8.4723.3576
AucUtilScanProgress, v5.8.4723.2530
AucUtilScanStart, v5.8.4723.2530
AucUtilSearchUI, v5.8.4723.3655
AucUtilSimpleAuction, v5.8.4723.4546
AucUtilVendMarkup, v5.8.4723.2530
AutoBar, vv3.2.0.798
Bagnon, v2.13.2b
BagnonForever, v1.1.2
BagnonTooltips, v
Bartender4, v4.4.2
Bartender4Dualspec, v
BetterBlizzOptions, v
BonusScanner, v5.3
ButtonFacade, v3.3.300
Cartographer, v2.0
CartographerBattlegrounds, v2.0
CartographerCoordinates, v2.0
CartographerFoglight, v2.0
CartographerGroupColors, v2.0
CartographerGuildPositions, v2.0
CartographerInstanceLoot, v2.0
CartographerInstanceMaps, v2.0
CartographerInstanceNotes, v2.0
CartographerLookNFeel, v2.0
CartographerNotes, v2.0
CartographerPOI, v2.0
CartographerWaypoints, v2.0
CartographerZoneInfo, v2.0
Configator, v5.1.DEV.130
DBMCore, v
Enchantrix, v5.8.4723 (CreepyKangaroo)
EnchantrixBarker, v5.8.4723 (CreepyKangaroo)
FishingBuddy, v0.9.8o
FramesResized, v2.3.2-47
FuBar, v
FuBarDurabilityFu, v2.11
FuBarLocationFu, v3.0
FuBarMailFu, vv3.1.3-3
FuBarMCPFu, v2.0 ($Revision$)
FuBarPerformanceFu, v2.0.0
FuBarWinterGraspTimerFu, v1.2.1
Gatherer, v3.1.14
GatherMate, vv1.23
GearScore, v3.1.17 - Release
HealBot, v3.3.5.0
Informant, v5.8.4723 (CreepyKangaroo)
InspectEquip, v1.7.7
ISBoxer, v1.0
Jamba, v0.6
JambaDisplayTeam, v0.6
JambaFollow, v0.6
JambaFTL, v0.6
JambaItemUse, v0.6
JambaMacro, v0.6
JambaProc, v0.6
JambaPurchase, v0.6
JambaQuest, v0.6
JambaSell, v0.6
JambaTalk, v0.6
JambaTaxi, v0.6
JambaToon, v0.6
LilSparkysWorkshop, v
Mapster, v1.3.9
MikScrollingBattleText, v5.4.78
MoveAnything, v3.3.5-10
Omen, v3.0.9
OmniCC, v2.5.9
OmniCCPulse, v1.1.2
Outfitter, v4.10
Overachiever, v0.54
Postal, v3.3.2
Prat30, v3.3.21
Prat30HighCPUUsageModules, v
Prat30Libraries, v
Quartz, v3.0.3
QuestHelper, v1.4.0
QuestHelperConfig, v1.0.2
QuestHistory, v
QuickRogueInfo, v1.11
RatingBuster, v
Recount, v
RoguePowerBars, v2.2.9-2
SatrinaBuffFrame, v3.1
SexyMap, v
ShadowedUnitFrames, vv3.2.12
SlideBar, v3.1.14 (<%codename%>)
Stubby, v5.8.4723 (CreepyKangaroo)
SunnArt, v3.42
SunnArtPack1, v1.4
SunnArtPack2, v1.4
SunnArtPack3, v1.4
TipTac, v10.05.01
TipTacItemRef, v10.02.27
TipTacTalents, v10.02.27
TradeskillInfo, v1.6.1
WIM, v3.3.5
XLoot, v0.91.1
XLootGroup, v0.61
XLootMonitor, v0.71
BlizRuntimeLib_enUS v3.3.5.30300 <us>
(ck=e5d)

santiagodraco
07-03-2010, 02:11 PM
Update from my previous error post:

It looks like InspectEquip and Jamba may be conflicting. With either disabled no errors occur and everything works great. Enable them together and the error is generated and all chat functions in jamba no longer function (other stuff may break too, not sure). For example slaves will no longer send tells to the master when they receive tells.

Inspectequip version 1.7.7 (pretty sure the change occured here as it updated on 7/1 and that's when the errors started)
Jamba version 0.6.2

Thanks

Maxion
07-03-2010, 02:56 PM
Update from my previous error post:

It looks like InspectEquip and Jamba may be conflicting. With either disabled no errors occur and everything works great. Enable them together and the error is generated and all chat functions in jamba no longer function (other stuff may break too, not sure). For example slaves will no longer send tells to the master when they receive tells.

Inspectequip version 1.7.7 (pretty sure the change occured here as it updated on 7/1 and that's when the errors started)
Jamba version 0.6.2

Thanks

I'm not sure exactly what InspectEquip does, but you could try using Examiner instead, see if that works better.

Pocalypse
07-03-2010, 11:47 PM
I'm having an issue where Quest Watcher isn't loading when I first log into the game.

So I log in, the Team-Window displays after a bit, but Quest Watcher doesn't. It also doesn't show after I've invited my group. I have to /reloadui after inviting everyone, and then it shows up.

Toggling the Show Quest Watcher checkbox in the options doesn't help.

santiagodraco
07-04-2010, 01:09 AM
I'm having an issue where Quest Watcher isn't loading when I first log into the game.

So I log in, the Team-Window displays after a bit, but Quest Watcher doesn't. It also doesn't show after I've invited my group. I have to /reloadui after inviting everyone, and then it shows up.

Toggling the Show Quest Watcher checkbox in the options doesn't help.

Having the same problem. Would be nice to have a hotkey to force QW to display.

Jafula
07-04-2010, 02:26 AM
I'm having an issue where Quest Watcher isn't loading when I first log into the game.

So I log in, the Team-Window displays after a bit, but Quest Watcher doesn't. It also doesn't show after I've invited my group. I have to /reloadui after inviting everyone, and then it shows up.

Toggling the Show Quest Watcher checkbox in the options doesn't help.


Having the same problem. Would be nice to have a hotkey to force QW to display.

The quest watcher will only show up if you (a toon in your team) is tracking a quest. If you want to see the window, track a quest.

1) Please tell me if this is not the case.
2) Is this okay behaviour? Or do you want the force the watcher window to display.

Jafula
07-04-2010, 02:27 AM
Update from my previous error post:

It looks like InspectEquip and Jamba may be conflicting. With either disabled no errors occur and everything works great. Enable them together and the error is generated and all chat functions in jamba no longer function (other stuff may break too, not sure). For example slaves will no longer send tells to the master when they receive tells.

Inspectequip version 1.7.7 (pretty sure the change occured here as it updated on 7/1 and that's when the errors started)
Jamba version 0.6.2

Thanks

If I get a chance, I'll install that addon and see if I can replicate your error.

Pocalypse
07-04-2010, 12:38 PM
The quest watcher will only show up if you (a toon in your team) is tracking a quest. If you want to see the window, track a quest.

1) Please tell me if this is not the case.
2) Is this okay behaviour? Or do you want the force the watcher window to display.
I have multiple quests being tracked on all toons. The blizzard quest tracker shows up with them (any way to disable that btw? I couldn't find anything in the blizzard options.)
If I /reloadui, the jamba quest watcher shows up.

FunkStar
07-05-2010, 06:58 AM
While using 'Slaves opt out of loot' options, since the last patch, they dont actually opt out of loot. Or rather. 1 of my 3 teams does. The others don't. All settings are correct (afaik). The thing is, if I manually check my slaves' loot options, it IS set to pass on loot, but they dont. If I then manually set 'Pass on loot' to 'No' and then back to 'Yes' it does work.

Any idea on how to fix this? Or even a simple macro command to opt out of loot would do it. I don't mind 1 extra keypress

edit: forgot to mention, this issue only started occuring from the release where you fixed the 'you are now opting out of loot' spam messages

sensenmann
07-07-2010, 08:35 PM
I am not seeing some or all of my toons in the jamba window / team menu. They show up as offline, even though they are online and in the same party. Relog and such doesnt fix.

Jafula
07-07-2010, 11:34 PM
I am not seeing some or all of my toons in the jamba window / team menu. They show up as offline, even though they are online and in the same party. Relog and such doesnt fix.

Change the core:communications channels on all toons. Make up your own channel name and password (no spaces) and enter this information seperately into each toons core:communications options. Seperately because these channel settings cannot be pushed. Then log out of all your toons and log them back in. Give it 30 seconds and they should all be able to see each other.

Jafula
07-07-2010, 11:35 PM
I have multiple quests being tracked on all toons. The blizzard quest tracker shows up with them (any way to disable that btw? I couldn't find anything in the blizzard options.)
If I /reloadui, the jamba quest watcher shows up.

I'll look into it...

Jafula
07-07-2010, 11:36 PM
While using 'Slaves opt out of loot' options, since the last patch, they dont actually opt out of loot. Or rather. 1 of my 3 teams does. The others don't. All settings are correct (afaik). The thing is, if I manually check my slaves' loot options, it IS set to pass on loot, but they dont. If I then manually set 'Pass on loot' to 'No' and then back to 'Yes' it does work.

Any idea on how to fix this? Or even a simple macro command to opt out of loot would do it. I don't mind 1 extra keypress

edit: forgot to mention, this issue only started occuring from the release where you fixed the 'you are now opting out of loot' spam messages

Hmmm, sounds like somethings not quite right; will have a look and see if I can fix it for next release.

Kruschpakx4
07-11-2010, 06:19 AM
jamba does actually not send real id whispers from toon to main

Maxion
07-11-2010, 03:49 PM
jamba does actually not send real id whispers from toon to main

Indeed.
Hopefully Jafula will figure out how to give us this function, as it will solve any current issues regarding multiple accounts and realid.

Owltoid
07-15-2010, 01:40 PM
Thanks to Jafula mentioning Jamba Item in the 'rank the useful tools of Jamba thread' and others mentioning it in other threads, I now have Jamba Item set up. Wow, that is REALLY useful! I even use it to equip new quest gear that I receive.

Thanks again, Jafula!

Zub
07-15-2010, 07:43 PM
Thanks to Jafula mentioning Jamba Item in the 'rank the useful tools of Jamba thread' and others mentioning it in other threads, I now have Jamba Item set up. Wow, that is REALLY useful! I even use it to equip new quest gear that I receive.

Thanks again, Jafula!
yup, i do the same, it's really very useful.

Zub
07-15-2010, 07:45 PM
I remember mentioning this a long time ago, but is there a way to have Jamba tell the master how much godl a slave has? or even sum up the info from all slaves?

I'm trying to configure altoholic to work cross-accounts but it doesn't seem to work too well (can't see toons on other accounts), was wondering if there was something in Jamba.
Just to keep track, after selling all the grays and getting quest money and loot share, of how much each toon has.

Maxion
07-17-2010, 09:39 AM
I remember mentioning this a long time ago, but is there a way to have Jamba tell the master how much godl a slave has? or even sum up the info from all slaves?

I'm trying to configure altoholic to work cross-accounts but it doesn't seem to work too well (can't see toons on other accounts), was wondering if there was something in Jamba.
Just to keep track, after selling all the grays and getting quest money and loot share, of how much each toon has.

I know some people were using macros to make their alts say in party chat how much money they had on them.
In altoholic, remember to select all accounts in the drop down menu at the top to show them, after first sharing the data of course.

Sam DeathWalker
07-17-2010, 10:29 PM
I turned on Show Online Channel Traffic and 3-5 times a second I am getting:


JambaCommunications: ChatFrame_MessageEventHandler
JambaCommunications: Team Channel: match? this: trade - city: team: sdwrulz or: sdwrulz


It just keeps spamming this constantly. sdwrulz is my channel name in core:communications.



Also is there a 15 or 16 person limit on the channel; my team just starts over after I log in my 16th or 17th guy. Whats changed, I used to get all 36 with no problem.

gbremset
07-21-2010, 04:14 AM
Indeed.
Hopefully Jafula will figure out how to give us this function, as it will solve any current issues regarding multiple accounts and realid.

To solve your realid problem for the time being, here is how to do it (and this has worked every time for me)

1: open up your windows, but do not log in (not even to battle.net)
2: log in to all your slaves, battle.net and characters
3: log in to your master, battle.net and character

Voila.. Your master should now be the realid target for whispers.

It's important that you do NOT log in to battle.net from your master screen until you have all your slaves up and running.

Now for a question for Jafula. (I haven't read all the latest posts yet, I'll remove this if I find something)
I'm having some issues with Jamba questing at the moment.. It is having problems passing questlog actions from the master to the slaves. I've been offshore, so I upgraded straight to 6.2 when I got home after 5 weeks.. Can't remember which version I was on before that.

alexanderthenotsogreat
07-21-2010, 05:45 AM
hey guys i use this addon now and its pretty cool it will be even more cool if stuff that the addon offers actualy work, dont get me wrong i like the addon and i am glad someone like thim made the addon but still it got a lot of flaws as of now 2010.
i am boxing 5 shammy's using 2 monitors 1 big screen infront of me that has only one wow frame and the other 4 wow frames on my second monitor, now i made it like this that if i press f9 it swaps a frame from the other monitor to the monitor infront of me makes this frame the new main slave while doing so, ok so now i got this new (master) but problem comes now the ftl is not making this new slave the new ftl target, so if i would have macro on my tones for exsample /click JambaFTLTarget or /click JambaFTLAssist it would not work, the beuatiful thing with this ftl stuff if it would work we dont have to make macro like /assist party1 using this sucks cause if for exsample we go to bg and soemone else is leader its screwed thats why ia m so big fan of this ftl stuff but it dont work the way it should, yea ok it work if i do /jamba
and set manualy the ftl but that saucks ofc u dont wonna do that when u just wonna fast swap i mean u made a command to make new masters via the commandline but it dont set this new masters as the ftl target, thats big fail in my eyes.
please please fix this and i will make imba donations i promise lol

Zub
07-21-2010, 06:19 AM
ouch was that only one sentence ? >.<

Maxion
07-21-2010, 06:24 AM
ouch was that only one sentence ? >.<

I think he was having issues with the jamba ftl helper.

alexanderthenotsogreat
07-21-2010, 08:52 AM
lol well u guys are helpfull picking someone on his grammer or lineup of text completly ignoring the issuea u should not post at all then, dont u aggree, should u guys not be in school xd.

Khatovar
07-21-2010, 09:06 AM
Perhaps if you explained the issue in a readable format instead of just nerdraging and flaming, people would help.

alexanderthenotsogreat
07-21-2010, 12:17 PM
Perhaps if you explained the issue in a readable format instead of just nerdraging and flaming, people would help.

whos flaming who here! u all flame me about how i type english!
My english is bad i know, no need to say that.