Open any pouches that have items by Jaseowns
# Open any pouches that have items by Jaseowns
# UO Outlands
@clearignore
while findtype "pouch" backpack 0 as item
getlabel item desc
if "(0 items" in desc
// do nothing
else
dclick item
wait 200
endif
@ignore item
endwhile
// open pouches that have items in it
while findtype "pouch" backpack 38 as item
getlabel item desc
if "(0 items" in desc
// do nothing
else
dclick item
wait 1500
dclick item
endif
@ignore item
endwhile
@clearignore