Back to "red" tags

Put bandages inside your empty red pouches by Jaseowns

1# Put bandages inside your empty red pouches by Jaseowns
2# UO Outlands
3# Live stream: https://youtu.be/P4jbgpvM_8c
4@setvar! globalTimeout 650
5
6@clearignore 
7while findtype "pouch" backpack 38 as item
8    getlabel item desc
9    if "(0 items" in desc
10        overhead "Found an empty pouch" 77
11        // empty
12        if findtype "clean bandage%s%" backpack as aids
13            getlabel aids aidsdesc
14            overhead "Moving an aid {{aidsdesc}}" 88
15            lift aids 1
16            drop item -1 -1 -1
17            wait globalTimeout
18            if "bandage" in aidsdesc
19                ignore aids
20            endif
21        else
22            overhead "We do not have any bandages" 34
23        endif
24    endif
25    @ignore item
26endwhile
27@clearignore