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

How about the quantity of collectibles?

pia

Member
Joined
Sep 25, 2013
Messages
126
Reaction score
0
The collection to automatically submit a certain number, but this number is judged not to fill out?thanks
 
The collection to automatically submit a certain number, but this number is judged not to fill out?thanks

I don't understand your question.

what profile are you using? Are you trying to automatically submit x items to the appraiser NPC?
 
<If Condition="HasAtLeast(5361,1)">
<If Condition="NqHasAtLeast(5361,1)">
<If Condition="HqHasAtLeast(5361,1)">
I want to judge the collection, but the above commands can not be judged. Please forgive my poor English
 
If you are using ExBuddy, please give this a try:
Code:
<If Condition="ExBuddy.Helpers.Condition.CollectableCount(5361, 400) &gt;= 1">
   <Log Message="I have at least one collectable with the item id 5361 that has at least 400 collectability!" />
</If>

The CollectableCount helper requires two parameters:
  • Item id
  • Min. collectability
If you are interested in how it works, please see .\Plugins\ExBuddy\Helpers\Condition.cs.
 
Very well, thank you very much. The problem has been solved



Marron Glace is the most efficient collection?

Or Persimmon Spinning Wheel?
 
Yes, you can use ExBuddy's ExTurnInCollectables behavior, which will automatically teleport and navigate to one of Rowena's vendors:

Code:
<ExTurnInCollectables>
    <ShopPurchases>
        <ShopPurchase ShopItem="GyrAbanianAlchemic" MaxCount="99" />
    </ShopPurchases>
</ExTurnInCollectables>

As the example shows, you can (optionally) exchange the earned scrips for items. The list of valid ShopItem identifiers can be found in .\RebornBuddy\Plugins\ExBuddy\OrderBotTags\Behaviors\Objects\ShopItem.cs.

For more details on other available options within the behavior, please see .\RebornBuddy\Plugins\ExBuddy\OrderBotTags\Behaviors\ExTurnInCollectablesTag.cs.
 
Last edited:
Yes, you can use ExBuddy's ExTurnInCollectables behavior, which will automatically teleport and navigate to one of Rowena's vendors:

Code:
<ExTurnInCollectables>
    <ShopPurchases>
        <ShopPurchase ShopItem="GyrAbanianAlchemic" MaxCount="99" />
    </ShopPurchases>
</ExTurnInCollectables>

As the example shows, you can (optionally) exchange the earned scrips for items. The list of valid ShopItem identifiers can be found in .\RebornBuddy\Plugins\ExBuddy\OrderBotTags\Behaviors\Objects\ShopItem.cs.

For more details on other available options within the behavior, please see .\RebornBuddy\Plugins\ExBuddy\OrderBotTags\Behaviors\ExTurnInCollectablesTag.cs.


Could you please explain to me how to us ExBuddy to turn in and then purchase alchemics? Do I not have something setup right?
 
Back
Top