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!

Plugin Request

Grim077

New Member
Joined
Jan 10, 2012
Messages
23
I was thinking of a plug in that would be awesome, If Anyone would like to make it That is.
My idea is a Plugin that will log you out when you get what you wanted to get like gather this amount of minerals
Example: Say if your Getting rep with Mag'har for the Talbuk Mount and you want it to Log Out when it gets a Stack of 200 or more (Obsidian Warbeads).
You could make it so you type in the Name of the Item or the Item ID and then how much you want it to get before it Logs Out.
If Anyone could make this it would be Awesome and I'd really love to have it.

Thank you!
Grim077
 
I was thinking of a plug in that would be awesome, If Anyone would like to make it That is.
My idea is a Plugin that will log you out when you get what you wanted to get like gather this amount of minerals
Example: Say if your Getting rep with Mag'har for the Talbuk Mount and you want it to Log Out when it gets a Stack of 200 or more (Obsidian Warbeads).
You could make it so you type in the Name of the Item or the Item ID and then how much you want it to get before it Logs Out.
If Anyone could make this it would be Awesome and I'd really love to have it.

Thank you!
Grim077
you can do that pretty easily with profession buddy.
 
i made one, but could you tell me how to make it log out when i have a Stack of 200 or more (Obsidian Warbeads)? please, i'm a noob at that kind of stuff
 
Code:
  <While Condition="Me.BagItems.FirstOrDefault(o =&gt; o.Name == &quot;Lifegiving Seed&quot;) != null &amp;&amp; Me.BagItems.FirstOrDefault(o =&gt; o.Name == &quot;Lifegiving Seed&quot;).StackCount &gt; 0" IgnoreCanRun="False">
    <CustomAction Code="Logging.Write(&quot;Removing Lifegivng Seed From Inventroy&quot;);" />
    <CustomAction Code="Me.BagItems.FirstOrDefault(o =&gt; o.Entry == 63122).PickUp();" />
    <WaitAction Condition="false" Timeout="1000" />
    <CustomAction Code="Lua.DoString(&quot;DeleteCursorItem()&quot;); " />
    <WaitAction Condition="false" Timeout="1000" />
  </While>
heres what i use or getting rid of Lifegiving seeds.


change the item name and stack count greater then the amount you want.
then change one of the lua.do strings to
<CustomAction Code="Lua.DoString(&quot;Quit()&quot;); " />


that should do it.
 
oh i forgot to ask where do i put that in my profile? or is it in ProfessionBuddy?
 
oh i forgot to ask where do i put that in my profile? or is it in ProfessionBuddy?

Profbuddy.

BTW. i did this too:

Load Profile X
If InbagCount(ItemID) >X
- <CustomAction Code="Lua.DoString(&quot;Quit()&quot;); " />

If you need another way to do this. :)
 
Last edited:
sorry but i don't know where i put that what file do i edit in ProfessionBuddy?
 
Back
Top