August 3, 20188 yr got problem with quest item that is looted from mob https://classicdb.ch/?item=3467#unlocks wrobot doesnt detect it can finish step cuz of it any fix? or workaround?
August 3, 20188 yr Hello, sorry I never found how to detect keys on vanilla (if someone have lua code for that)
August 3, 20188 yr Author item goes to keyring and its not deteced any1 could help me with a macro or code to move key from keyring to backpack
August 3, 20188 yr Author Just now, Droidz said: Hello, sorry I never found how to detect keys on vanilla (if someone have lua code for that) when i move key from keyring to backpack everything works fine
August 3, 20188 yr https://github.com/MOUZU/Blizzard-WoW-Interface/blob/d162a4c0d198a4381b5b6573d975635ed7316702/1.12.1/FrameXML/ContainerFrame.lua#L52 Not tested, but try: local itemIdSearch = 3467; local bag = KEYRING_CONTAINER; for slot = 1,MAX_CONTAINER_ITEMS do local itemLink = GetContainerItemLink(bag,slot); local _, itemCount = GetContainerItemInfo(bag,slot); if itemLink and itemCount then local _,_,itemId = string.find(itemLink, '.*|Hitem:(%d+):.*'); if itemId and tonumber(itemId) == itemIdSearch then print("Key found"); return end end end print("Key no found");
August 3, 20188 yr It works, thanks Droidz! Very handy code for some quests KeyExample.xml Edited August 16, 20188 yr by FNV316 Added working Quester example
Create an account or sign in to comment