• Visit Rebornbuddy
  • Items name issue

    Discussion in 'Rebornbuddy Forum' started by wlfpanda1012, Jan 9, 2018.

    1. wlfpanda1012

      wlfpanda1012 New Member

      Joined:
      Dec 17, 2017
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      1
      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")
       
    2. Freiheit

      Freiheit Member

      Joined:
      Apr 23, 2015
      Messages:
      43
      Likes Received:
      26
      Trophy Points:
      18
      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.
       
    3. wlfpanda1012

      wlfpanda1012 New Member

      Joined:
      Dec 17, 2017
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      1
      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?
       
    4. Freiheit

      Freiheit Member

      Joined:
      Apr 23, 2015
      Messages:
      43
      Likes Received:
      26
      Trophy Points:
      18
      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: Jan 10, 2018

    Share This Page