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!

looking for somone who can make a potion of treasure finding plugin.

revex01

New Member
Joined
Aug 5, 2014
Messages
4
Im looking for somone who can make a potion of treasure finding plugin that will cast/use potion of treasure finding or use item via item ID and then recast that item at an x amount of time changable via the user and continue in an endless loop. Any help would be much appreciated.
 
Hi!
If i'm not wrong, none of those are actually working.
Is there any solution at the moment?
 
bumping this because I need help with the same problem.

I have searched but everything I find is outdated
 
I think i found a way.
Just add in your profile :
<CustomBehavior File="Hooks\DoWhen" UseWhen="!Me.HasAura(80263) &amp;&amp; HasItem(58488) &amp;&amp; !Me.IsCasting" ActivityName="UseSomeItem" AllowUseDuringCombat="False" AllowUseWhileFlying="False" >
<CustomBehavior File="Message" Text="Use Potion of Treasure Finding" LogColor="RED" />
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(58488)" WaitTime="1000" />
</CustomBehavior>

and
<CustomBehavior File="Hooks\DoWhen" ItemId="58488" UseWhen="!Me.HasAura(80263) &amp;&amp; HasItem(58488) &amp;&amp; !Me.IsCasting" AllowUseWhileFlying="False" AllowUseDuringCombat="false" />

Tell me if this works
 
that methods doent work if you farming raids/dungeons. at the entrance bot use flask despite the presence of buff.
 
that methods doent work if you farming raids/dungeons. at the entrance bot use flask despite the presence of buff.
An easy fix would be to just temporarily disable it while going in/out of the portals.
Or, just have it completely disabled while not inside of the dungeon/raid at all since there's no point for the bot to refresh the potion while outside of the raid/dungeon.


A Proper Hook Configuration:
HTML:
<CustomBehavior File="Hooks\DoWhen" ActivityName="Refresh_Potion" UseWhen="!Me.HasAura(80263) &amp;&amp; HasItem(58488)" >
	<CustomBehavior File="UseItem" ItemId="58488" WaitTime="1000" />
</CustomBehavior>


After the enter Raid/Dungeon code:
HTML:
<CustomBehavior File="Hooks\DoWhen" ActivityName="Refresh_Potion" Command="Enable" />


Before the exit Raid/Dungeon code:
HTML:
<CustomBehavior File="Hooks\DoWhen" ActivityName="Refresh_Potion" Command="Disable" />



You could include a Me.IsInInstance check to the UseWhen.

But it seems in this situation that there's an issue with the bot properly detecting 'things' after zoning.
So to be on the safe side, manually disabling/enabling the hook seems to be the most reliable solution.

However, adding Me.IsInInstance is still worth a try that way you can avoid having to add the Enable/Disable lines.
 
Last edited:
Back
Top