What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Automatic combining of 10 items into 1

Joined
Apr 8, 2016
Messages
174
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?
 
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.
 
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
 
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.


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.
 
Back
Top