Back to "pouches" tags

Move pouches to pretty corner by Jaseowns

1# Move pouches to pretty corner by Jaseowns
2# UO Outlands
3# Dorrian requested this, if you want to change base bag..
4# update line 6 to point to another serial instead of backpack
5# use >info to get the id
6@setvar! whereMyPrettyPouchesGo backpack
7@setvar! globalTimeout 650
8
9@clearignore 
10    
11while findtype "pouch" backpack 0 as item
12    overhead "Organize Open Pouches" 77
13    lift item
14    drop whereMyPrettyPouchesGo 0 0 0
15    wait globalTimeout
16    if insysmsg "you may pick up an item from here"
17        // do nothing
18    else
19        @ignore item
20    endif
21endwhile
22
23while findtype "pouch" backpack 38 as item
24    overhead "Organize Trapped Pouches" 38
25    lift item
26    drop whereMyPrettyPouchesGo 0 0 0
27    wait globalTimeout
28    if insysmsg "you may pick up an item from here"
29        // do nothing
30    else
31        @ignore item
32    endif
33endwhile
34
35@clearignore 
36    
37while findtype "pouch" backpack 0 as item
38    overhead "Open Pouches" 66
39    dclick item
40    wait globalTimeout
41    @ignore item
42endwhile
43
44@clearignore 
45