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!

Items name issue

wlfpanda1012

New Member
Joined
Dec 17, 2017
Messages
2
Hi,Im new here and have some questions. I'd like to check the items name and add to my profiles, but i can't find it anywhere, can somebody tell where is it? Like a items name list for example? ("Rowena's Token (Regional Folklore)" this name can not be use, it's should be "FolkloreGatherToken")
 
I assume you are talking about ExBuddy's ExTurnInCollectables tag which allows to exchange scrips for items.

You can find a list of all valid shopitems for the behavior in .\RebornBuddy\Plugins\ExBuddy\OrderBotTags\Behaviors\Objects\ShopItem.cs.

If you want to find regular item IDs, I recommend you grab the number off the item URL on xivdb.
 
I assume you are talking about ExBuddy's ExTurnInCollectables tag which allows to exchange scrips for items.

You can find a list of all valid shopitems for the behavior in .\RebornBuddy\Plugins\ExBuddy\OrderBotTags\Behaviors\Objects\ShopItem.cs.

If you want to find regular item IDs, I recommend you grab the number off the item URL on xivdb.
Thanks for your reply.OK, so i found this "ShopItem.cs", but i saw there is a "FolkloreGatherToken = 600", what is that mean? The "Rowena's Token (Regional Folklore)" ID number should be 20260, isn't it?
 
If you are using ExBuddy to turn-in scrips and want to exchange them for tokens, you'd do something like this:
Code:
<ExTurnInCollectables>
   <ShopPurchases>
      <ShopPurchase ShopItem="FolkloreGatherToken" MaxCount="99" />
   </ShopPurchases>
</ExTurnInCollectables>
The identifiers in ShopItem.cs are exclusive to ExBuddy's behaviors and are not used by other behaviors. Yes, they are not the item ids.

If you are trying to use the normal BuyItem behavior, you would specify the item id (example abbreviated):
Code:
<BuyItem ItemId="4551" ItemCount="99" [...] />
This is consistent with other standard behaviors that reference item ids.

But again: Without any context what you are trying to do, it is hard to help you.
 
Last edited:
Back
Top