• Visit Rebornbuddy
  • Automatic combining of 10 items into 1

    Discussion in 'Honorbuddy Forum' started by TimeSaverZealot, Apr 30, 2016.

    1. TimeSaverZealot

      TimeSaverZealot Member

      Joined:
      Apr 8, 2016
      Messages:
      174
      Likes Received:
      1
      Trophy Points:
      18
      I posted another thread about automatic disenchanting, and was lucky with a response from EchoTiger, so thought I'd post another thread about this one, too. Can someone please provide me code for combining all items in the bag, of which 10 can be combined, into 1 each?

      Or is there a plugin already for this sort of thing?
       
    2. TimeSaverZealot

      TimeSaverZealot Member

      Joined:
      Apr 8, 2016
      Messages:
      174
      Likes Received:
      1
      Trophy Points:
      18
      The searching on the forums sometimes doesn't help, but a smart Google search of the forums here helped me find the answer to my question!

      [Plugin] TidyBags 3.0 Reloaded!

      Tested. Awesome plugin for what I asked about.
       
    3. TimeSaverZealot

      TimeSaverZealot Member

      Joined:
      Apr 8, 2016
      Messages:
      174
      Likes Received:
      1
      Trophy Points:
      18
      After using TidyBags for a while, I noticed 2 issues, though:

      1. It requires me to open the mailbox every time I want to combine a few more stacks. Why? Can this be removed so it just combines everything in one go automatically?

      2. It combines way too fast; I think it may actually smell wrong or look dodgy on Blizzard's end. I wish I had the knowledge and skills to do this, but if Liquid or anyone can add a delay of a 1 second after every combine action, that would be really great.

      Any help from someone who has the knowledge, or at least putting me in the right direction when it comes to editing the plugin's files, I would be most grateful.
      Thank you again.
       
    4. Cloudy

      Cloudy Member

      Joined:
      Apr 18, 2012
      Messages:
      417
      Likes Received:
      3
      Trophy Points:
      18
      Option 1:
      Code:
      <If Condition="GetItemCount(ItemID) &gt;= 10">
      <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(ItemID)" />
      </If>
      
      It will only do it at the point in the profil you use it

      Option 2:
      Code:
      <CustomBehavior File="Hooks\DoWhen" ActivityName="CombineItem" AllowUseDuringCombat="True" UseWhen="GetItemCount(ItemID) &gt;= 10">
      			<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(ItemID)" />
      		</CustomBehavior>
      
      Bot will combine the items as soon as he gets 10 or more
       
    5. carz

      carz Member

      Joined:
      Apr 9, 2013
      Messages:
      109
      Likes Received:
      1
      Trophy Points:
      18

      I use this since it was out and the way that it works is that, It check after every loot. Hence if you have 10 of an item that stack to 1 like leather but, you have 195 of them in the mail. After the mail is done "looting" it check to see if you can combine more. Same as if you are out farming leather but get a ton of scrap pieces due to low skill.

      The combines fast is the same as using a macro like /use Raw Hide Scrap if you spam it. or it you just an addon to Stack items. But Cloudys should work if you are making a profile and ppl dont use tidy bag.
       

    Share This Page