View Single Post
06/12/21, 05:40 PM   #5
Calamath
AddOn Author - Click to view addons
Join Date: Aug 2019
Posts: 36
Post

I will share with you the special code I use in Calamath's Shortcut Pie Menu add-on.

Lua Code:
  1. for index = 1, GetTotalCollectiblesByCategoryType(COLLECTIBLE_CATEGORY_TYPE_COMPANION) do
  2.     local collectibleId = GetCollectibleIdFromType(COLLECTIBLE_CATEGORY_TYPE_COMPANION, index)
  3.     d(collectibleId)
  4. end

good luck.

- Calamath
  Reply With Quote