Move Full Kegs to Different Container by Jaseowns

1# Move full kegs to different container by Jaseowns
2# UO Outlands
3# https://outlands.uorazorscripts.com/
4# Requirements:
5#   By default the search source is your backpack
6#   You also will want to select where you want to put full kegs
7#   If you will always use the same container, just add the serial
8#   on line 10 similar to how backpack works
9@setvar! search_source backpack
10@setvar! put_away_keg_container
11
12while findtype "keg" search_source as kegger
13    getlabel kegger desc
14    wait 100
15    if "completely full" in desc
16        overhead "Full Keg found" 88
17        lift kegger 
18        drop put_away_keg_container -1 -1 -1
19    else
20        overhead desc 34
21        ignore kegger
22    endif
23    wait 500
24endwhile
25
26clearignore 
27overhead "All done" 88