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!

Way to use a Potion from within Orderbot?

mistahmikey

New Member
Joined
Jun 29, 2015
Messages
161
Not sure if this is the right place for this, but I was wondering if there is a way to use a potion (specifically Cordial) from within Orderbot.
 
Would be interested in this as well. It can speed up gathering (esp fishing) considerably, and I have a lot of seals to burn through from fates.
 
You could try running this in some form or fashion during the profile. I haven't tested it, but I believe it should work when the code is called to run:

Code:
<CodeChunk Name="UseCordial">
	<![CDATA[ 
		foreach(ff14bot.Managers.BagSlot slot in ff14bot.Managers.InventoryManager.FilledSlots)
		{
			if(slot.RawItemId == 6141)
			{
				slot.UseItem();
			}
		}
]]>
</CodeChunk>
Or:

Code:
<CodeChunk Name="UseHiCordial">
	<![CDATA[ 
		foreach(ff14bot.Managers.BagSlot slot in ff14bot.Managers.InventoryManager.FilledSlots)
		{
			if(slot.RawItemId == 12669)
			{
				slot.UseItem();
			}
		}
]]>
</CodeChunk>
To use it during the profile, use this when you want it to be called (add "Hi" if you want to use Hi-Cordials):

Code:
<RunCode Name="UseCordial" />
 
Back
Top