Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 2112

Hybrid View

  1. #1

    Default

    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

  2. #2

    Default

    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.

  3. #3

    Default

    Quote Originally Posted by TheFallenOne View Post
    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/jam...ultiple-times/

    I assume that you are still using an older version because of this.
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  4. #4

    Default

    Quote Originally Posted by Jafula View Post
    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).

  5. #5

    Default

    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:

    Code:
                ["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.
    Last edited by Reglar : 01-30-2010 at 07:40 PM Reason: Issue resolved

  6. #6

    Default

    Sweet, not a problem with Jamba then, that's what I like to read!
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  7. #7

    Default

    Quote Originally Posted by buzzerbeater View Post
    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.

  8. #8

    Default

    Quote Originally Posted by taurolyon View Post
    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.

  9. #9

    Default

    Quote Originally Posted by Farmerbobbeh View Post
    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.

  10. #10

    Default

    Quote Originally Posted by TheFallenOne View Post
    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.

Similar Threads

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

Posting Rules

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