Close
Page 7 of 10 FirstFirst ... 5 6 7 8 9 ... LastLast
Showing results 61 to 70 of 103

Hybrid View

  1. #1
    Old Man Vecter's Avatar
    Join Date
    Oct 2008
    Location
    Oregon
    Posts
    436
    Blog Entries
    3

    Default

    Getting spam in my channel every 5 seconds, didn't seem there was a solution yet.

    Name:  cbKJO1A.png
Views: 556
Size:  36.4 KB
    Computer Freak Social Geek

    GET OFF MY LAWN!

  2. #2
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815

    Default

    Quote Originally Posted by Vecter View Post
    Getting spam in my channel every 5 seconds, didn't seem there was a solution yet.
    Assuming you're still using ElvUI:

    http://www.dual-boxing.com/threads/4...l=1#post387245
    Do not send me a PM if what you want to talk about isn't absolutely private.
    Ask your questions on the forum where others can also benefit from the information.

    Author of the almost unknown and heavily neglected blog: Multiboxology

  3. #3

    Default

    So I liked the idea of the Advanced Loot module, but I saw some need for improvement based on my team's behavior when using it. Feel free to read ahead if you're just looking for the zip file.

    So, the main problem I noticed is that loot in wow is not truly pooled. What I mean by that is if there is a Mote of Harmony on one corpse in a pile and a piece of gray trash on another corpse, and you loot the piece of gray trash, the corpse that the trash was on stops sparkling - you can't loot the mote by interacting with that corpse.

    So, the first thing I did was to rearrange how this module facilitates looting. If the module sees ANY item in the loot window which has a target specified in the settings, it will not loot anything (including gold/quest items/etc) This way the characters which are set up to loot the item have a chance to open their loot window and take their item.

    I also wanted some added functionality for item types, so I added target selections in the settings for Green,Blue,Purple BoPs and BoEs, and click. This way I can have my whole team interact with corpse piles, and my enchanter will take the BoP items that need to be disenchanted, my tailor will get all the motes and cloth, and my main will pick up any BoEs that might be good candidates to sell.

    To use this, just replace your Jamba-AdvancedLoot folder with what's in the zip file!

    Jamba-AdvancedLoot.zip

    I'm in #isboxer 24/7 and I stream @ twitch.tv/tehtsuo almost every day, so feel free to stop by and say hi or ask questions anytime.

  4. #4

    Default

    Hey Tehtsuo,

    This is awesome. Thanks for adding a bit to Jamba. Great work.

    I've taken your changes, tidied the code up a little (changed purple/blue/green to epic/rare/uncommon) and packaged it up in a new release. I've not done as much testing as I would like. One thing I did change that might not be ideal and I would like feedback on is the following. If it turns out to be a bad change, I can revert to the way you had it.

    If the character comes finds an item in a loot slot that is not on the watch list, it loots it and leaves any other items alone. I'm a bit worried that this means that corpse the trash was on stops sparkling, which is not what you want. Anyway, could you have a try and see if it works as expected? If its broken I'll fix it.

    Cheers,
    Jafula.

    Quote Originally Posted by Tehtsuo View Post
    So I liked the idea of the Advanced Loot module, but I saw some need for improvement based on my team's behavior when using it. Feel free to read ahead if you're just looking for the zip file.

    So, the main problem I noticed is that loot in wow is not truly pooled. What I mean by that is if there is a Mote of Harmony on one corpse in a pile and a piece of gray trash on another corpse, and you loot the piece of gray trash, the corpse that the trash was on stops sparkling - you can't loot the mote by interacting with that corpse.

    So, the first thing I did was to rearrange how this module facilitates looting. If the module sees ANY item in the loot window which has a target specified in the settings, it will not loot anything (including gold/quest items/etc) This way the characters which are set up to loot the item have a chance to open their loot window and take their item.

    I also wanted some added functionality for item types, so I added target selections in the settings for Green,Blue,Purple BoPs and BoEs, and click. This way I can have my whole team interact with corpse piles, and my enchanter will take the BoP items that need to be disenchanted, my tailor will get all the motes and cloth, and my main will pick up any BoEs that might be good candidates to sell.

    To use this, just replace your Jamba-AdvancedLoot folder with what's in the zip file!

    Jamba-AdvancedLoot.zip

    I'm in #isboxer 24/7 and I stream @ twitch.tv/tehtsuo almost every day, so feel free to stop by and say hi or ask questions anytime.
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  5. #5

    Default

    Quote Originally Posted by Jafula View Post
    Hey Tehtsuo,

    This is awesome. Thanks for adding a bit to Jamba. Great work.

    I've taken your changes, tidied the code up a little (changed purple/blue/green to epic/rare/uncommon) and packaged it up in a new release. I've not done as much testing as I would like. One thing I did change that might not be ideal and I would like feedback on is the following. If it turns out to be a bad change, I can revert to the way you had it.

    If the character comes finds an item in a loot slot that is not on the watch list, it loots it and leaves any other items alone. I'm a bit worried that this means that corpse the trash was on stops sparkling, which is not what you want. Anyway, could you have a try and see if it works as expected? If its broken I'll fix it.

    Cheers,
    Jafula.
    Your changes look pretty clean, and I like how you encapsulated the loot alerts to trim down the main loot function.

    On the loot behavior - it looks like you've trimmed the loot code down to a single pass through the loot window, checking for items in the watch list or that match the filters. The problem with that is if there is a non-watched item above a watched one in the loot window it needs to leave that non-watched item. With only one pass through the loot window it won't know. This is especially a concern since the first slot on most loot windows is gold - with your loop, the first character that loots will get through the loop to the end with safeToLoot set true, and loot the gold. Then any other character will have a good chance of not seeing sparklies on the targeted corpse and you'll have to switch to that character and find a still-sparkling corpse.

    My version has two loops through the loot window slots each time through the main loop. The first loop just checks for watched/BoP/BoE/Cloth and if the player is a target for anything it loots it. the second loop picks up everything else, but is skipped if the first loot found anything targeted for another player.

    Let me know what you think, and feel free to chat me up if you have questions.

  6. #6
    Old Man Vecter's Avatar
    Join Date
    Oct 2008
    Location
    Oregon
    Posts
    436
    Blog Entries
    3

    Default

    Quote Originally Posted by MiRai View Post
    Yes already went through that thread, any solution is a hack of lua (and not really reliable) or doesn't work.
    Computer Freak Social Geek

    GET OFF MY LAWN!

  7. #7

    Default

    Quote Originally Posted by Vecter View Post
    Yes already went through that thread, any solution is a hack of lua (and not really reliable) or doesn't work.
    Hey Vecter,

    I realized that Jamba was still loading and creating the channel that causes the spam even if Assume All Team Members Online was checked. I've changed that now in 5.4.8.3 so that it will not create the channel if you have Assume All Team Members Online checked.

    Hopefully this solves your issue without having to resort to hacks. Please let me know if it works for you.

    Cheers,
    Jafula.
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  8. #8

    Default

    Alright, some more fixes. I just managed to sneak some testing in before the server shutdown for maintenance. Yeh!

    Jamba Version: 5.4.8.3


    Jamba-AdvancedLoot
    * Added two pass loot system from Tehtsuo back into AdvancedLoot so that lootable corpses will still sparkle for all toons if an item of interest is available to be looted.


    Core: Communications
    * If Assume All Team Members Online is checked then Jamba will not open a private channel. This change means that when Assume All Team Members Online is checked, there will be no chat channel spam when the ElvUI addon is loaded as well as Jamba. It does mean that you will have to specifically add/remove characters from the Jamba team list as you are playing them or you will get Player XXX Not Found messages.
    * Assume All Team Members Online now requires a game /reload after it changes in order for the change to take effect.
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  9. #9

    Default Jamba

    Hi all I am new to Multiboxing and decided to run 4 melee now I checked into strobe follow through ISBoxer with Jamba and I love it saves me having to press my follow key 24/7. However I noticed it works fine outside of Siege of Orgrimmar like in Real work pvp. As well I used Strobe follow successfully in Throne of Thunder but I cannot seem to get it to work in Siege of Orgrimmar for WoW. I have had it working then qeue lfr then get SoO then it stops working and guys are not following during combat. Is this a bug that anyone knows of?

  10. #10

    Default

    I guess you are not having a problem with Jamba but with follow in SOO. Does normal follow work in SOO? If it does, then follow strobe should work as well.

    Quote Originally Posted by Rocknard View Post
    Hi all I am new to Multiboxing and decided to run 4 melee now I checked into strobe follow through ISBoxer with Jamba and I love it saves me having to press my follow key 24/7. However I noticed it works fine outside of Siege of Orgrimmar like in Real work pvp. As well I used Strobe follow successfully in Throne of Thunder but I cannot seem to get it to work in Siege of Orgrimmar for WoW. I have had it working then qeue lfr then get SoO then it stops working and guys are not following during combat. Is this a bug that anyone knows of?
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

Tags for this Thread

Posting Rules

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