MstrGareth
Active Member
I am trying to see if a given equipment slot is empty
Works
Works
Does not work
The last will return false if the diplomacy or the crafting slot has an item equipped. The first item is finds in a slot that has "Chest" in its equip slot name.
Is it possible to get this changed to not be a substring comparison, or add an exact match version for the "CurrentEquipSlot" search?
Thanks
Works
Code:
ext.Me().Inventory("CurrentEquipSlot", "Diplomacy Chest").Name == null
Code:
ext.Me().Inventory("CurrentEquipSlot", "Crafting Chest").Name == null
Code:
ext.Me().Inventory("CurrentEquipSlot", "Chest").Name == null
Is it possible to get this changed to not be a substring comparison, or add an exact match version for the "CurrentEquipSlot" search?
Thanks