Move Full Kegs to Different Container by Jaseowns
# Move full kegs to different container by Jaseowns
# UO Outlands
# https://outlands.uorazorscripts.com/
# Requirements:
# By default the search source is your backpack
# You also will want to select where you want to put full kegs
# If you will always use the same container, just add the serial
# on line 10 similar to how backpack works
@setvar! search_source backpack
@setvar! put_away_keg_container
while findtype "keg" search_source as kegger
getlabel kegger desc
wait 100
if "completely full" in desc
overhead "Full Keg found" 88
lift kegger
drop put_away_keg_container -1 -1 -1
else
overhead desc 34
ignore kegger
endif
wait 500
endwhile
clearignore
overhead "All done" 88