Put bandages inside your empty red pouches by Jaseowns
# Put bandages inside your empty red pouches by Jaseowns
# UO Outlands
# Live stream: https://youtu.be/P4jbgpvM_8c
@setvar! globalTimeout 650
@clearignore
while findtype "pouch" backpack 38 as item
getlabel item desc
if "(0 items" in desc
overhead "Found an empty pouch" 77
// empty
if findtype "clean bandage%s%" backpack as aids
getlabel aids aidsdesc
overhead "Moving an aid {{aidsdesc}}" 88
lift aids 1
drop item -1 -1 -1
wait globalTimeout
if "bandage" in aidsdesc
ignore aids
endif
else
overhead "We do not have any bandages" 34
endif
endif
@ignore item
endwhile
@clearignore