ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   AddOn Help/Support (https://www.esoui.com/forums/forumdisplay.php?f=164)
-   -   Container names for insects?? (https://www.esoui.com/forums/showthread.php?t=7845)

sapientNode 06/07/18 09:16 PM

Container names for insects??
 
I am using craft auto loot addon and wanted to put insects on the list of being auto looted.
Can someone help me with the container names for insects or direct me to the LUA with containers in them??
thx for the help

Dolgubon 06/07/18 10:07 PM

Rather than checking the container name, why not check what is in the container?I realize that's a bit hypocritical because I check the container name myself, but it's still probably a better method.

sapientNode 06/07/18 10:18 PM

Actually that would be better since I could better specify.
I am starting with reverse engineering craft auto loot though
Figured it is easier to just insert inside containers section. Suppose I could add more to it to add more detail...


Code:

function CraftAutoLoot:Initialize()
  ZO_ReticleContainerInteract:SetHandler("OnShow", function()
      local action, container, _, _, additionalInfo, _ = GetGameCameraInteractableActionInfo()
      if action == "Mine" or action == "Collect" or action == "Cut" or action == "Reel In" or ((container == "Apple Basket" or container == "Apple Crate" or container == "Barrel" or container == "Barrels" or container == "Basket" or container == "Cabinet" or container == "Corn Basket" or container == "Crate" or container == "Crates" or container == "Flour Sack" or container == "Greens Basket" or container == "Melon Basket" or container == "Millet Sack" or container == "Sack" or container == "Saltrice Sack" or container == "Seasoning Sack" or container == "Tomato Crate" or container == "Heavy Sack" or container == "Heavy Crate") and action == "Search") then
        SetSetting(SETTING_TYPE_LOOT, LOOT_SETTING_AUTO_LOOT, 1)
      else
        SetSetting(SETTING_TYPE_LOOT, LOOT_SETTING_AUTO_LOOT, 0)
      end
  end)
end



All times are GMT -6. The time now is 04:36 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI