Out of interest @DarkstaR - would it be possible to use the HasParent variable for each container to count how many loot or gold backpacks you've used so far? That would mean we could reset containers and use that function to cycle only the required number of backpacks on depositing, could also be useful if we can get more container parent info to allow us to monitor which container we're currently using... I'm not sure what HasParent returns but if it's an item ID we could simply use multicoloured backpacks through the levels...
You cannot fail, so I'm lowering the standard.
is there any updated version of this that works with todays bot to count gold in nestled backpacks?
so after some looking around I got to this
local goldReturn = 1000
function checkGold(proxy, message)
local gold = tonumber(string.match(message, "Using one of (.+) gold coins..."))
if (gold > goldReturn) then
gotoLabel("labelToLeave")
end
and then inside the label i put
LootMessageProxy.OnReceive("Gold Checker", checkGold)
is that correct?
I then went into the documentation to find out how to use a hotkey with script, but couldn't find this anywhere, so even if I got that far I don't know what to write in the label to actually press the hotkey... help please!![]()