Lord Glacier's Chill AUTO BAGGER - UO OUTLANDS RAZOR SCRIPT - v1.0.3 by danstock._98439
Related: Snippetauto pilotautopilotcompanionglacierinventorylockboxloot baglord glacieropen bagspotion satchelsatchelwizard satchel
Description from the author:
/////////
//////// Lord Glaciers Chill AUTO BAGGER - UO OUTLANDS RAZOR SCRIPT - version 1.0.3
///////
////// UO Outlands Razor script - Released January 4, 2026 - Last updated September 10, 2026
///// Compiled by DanStock. (aka. Lord Glacier)
////
///
///////////////////////
// CHANGE LOG: //
///////////////////////
# Sep 10 2026 - version 1.0.3: Added Archery skill check to Quiver and Magery skill check to Wizard Satchel (> 0)
# Sep 09 2026 - version 1.0.2: Added support for Adventure Satchels
# Jul 23 2026 - version 1.0.1: Added support for Quivers
# Jan 04 2026 - version 1.0.0: Public script release!
/////////////////
// TIPS: //
/////////////////
# Another short QOL script that I use along with my Auto Pilots - this one is handy if you close your hidden inventory bags by accident
# This is a companion script to my others which will open your main inventory pouch after it has been buried under trapped pouches
# It will ignore empty pouches and pouches with only 1 item in order to avoid opening trapped pouches by mistake
# Script will also optionally open your potion satchel, wizard satchel (ignores decorative), loot bag, Adventure Satchel and lockboxes if enabled below
###############################
### USER VARIABLES: ###
###############################
@setvar! EnablePotionSatchel 0
@setvar! EnableWizardSatchel 0
@setvar! EnableQuiver 0
@setvar! EnableLootBag 0
@setvar! EnableLockBox 0
@setvar! EnableAdventureSatchel 0
/////////////////////////
// END OF VARIABLES! //
/////////////////////////
################ EDIT BELOW THIS LINE AT YOUR OWN RISK! ##### EDIT BELOW THIS LINE AT YOUR OWN RISK! ##### EDIT BELOW THIS LINE AT YOUR OWN RISK! ##### EDIT BELOW THIS LINE AT YOUR OWN RISK! ################
////////////////////////
// SCRIPT START: //
////////////////////////
clearignore
dclick backpack
wait 500
while findtype pouch self as maininventorybag
getlabel maininventorybag packlabel
if "(1 items, 1 stones)" in packlabel or "(0 items, 0 stones)" in packlabel or "(2 items, 2 stones)" in packlabel
ignore maininventorybag
wait 150
else
dclick maininventorybag
wait 500
break
endif
endwhile
clearignore
while queued
wait 100
endwhile
if EnablePotionSatchel = 1
if findtype 'alchemists satchel' self as BagofPot
dclick BagofPot
wait 500
else
overhead "[ NO POTION SATCHEL! ]" 337
wait 500
endif
clearignore
while queued
wait 100
endwhile
endif
if EnableWizardSatchel = 1
if findtype 'reagent satchel' self as WizardBag
while findtype 'reagent satchel' self as WizardBag
getlabel WizardBag WizardBaglabel
wait 500
if "decorative" in WizardBaglabel
@ignore WizardBag
else
break
endif
endwhile
dclick WizardBag
wait 500
else
overhead "[ NO WIZARD SATCHEL! ]" 337
wait 500
endif
clearignore
while queued
wait 100
endwhile
endif
if EnableAdventureSatchel = 1
if findtype 'book bind' self as BlessedItemBag
dclick BlessedItemBag
wait 500
else
overhead "[ NO ADVENTURE SATCHEL! ]" 337
endif
endif
if EnableQuiver = 1
if findtype 'quiver' self as Quiver
while findtype 'quiver' self as Quiver
getlabel Quiver Quiverlabel
wait 500
if "decorative" in Quiverlabel
@ignore Quiver
else
break
endif
endwhile
dclick Quiver
wait 500
else
overhead "[ NO QUIVER! ]" 337
wait 500
endif
clearignore
while queued
wait 100
endwhile
endif
if EnableLootBag = 1
if findtype 'bag' self as LootBag
dclick LootBag
wait 500
else
overhead "[ NO LOOT BAG! ]" 337
wait 500
endif
clearignore
while queued
wait 100
endwhile
endif
if EnableLockBox = 1
if findtype "wooden box" backpack as LootBox
if findtype "copper key" backpack as LootKey
getlabel LootBox LootBoxLabel
wait 250
if "items" in LootBoxLabel
dclick LootBox
wait 500
else
dclick LootKey
wft 1000
target LootBox
overhead "[lockbox opened]" 69 LootBox
wait 500
dclick LootBox
wait 500
endif
else
overhead "[ NO LOCKBOX KEY! ]" 337
wait 500
endif
else
overhead "[ NO LOCK BOX! ]" 337
wait 500
endif
clearignore
while queued
wait 100
endwhile
endif
if EnablePotionSatchel = 0 and EnableWizardSatchel = 0 and EnableQuiver = 0 and EnableLootBag = 0 and EnableLockBox = 0 and EnableAdventureSatchel = 0
overhead '[ NO BAGS SELECTED! ]' 337
sysmsg 'Script error: No bags were selected. Please check your variables and try again!' 69
endif
overhead "[ SCRIPT COMPLETE! ]" 88
stop
////////////////////////
// SCRIPT FINISH //
////////////////////////
// Thank you for using my scripts! I can be contacted via email here: dan@danstockman.com
// Good luck out there and say hello if you see me in Avadon (Lord Glacier) - please don't PK me lol
# Another short QOL script that I use along with my Auto Pilots - this one is handy if you close your hidden inventory bags by accident
# This is a companion script to my others which will open your main inventory pouch after it has been buried under trapped pouches
# It will ignore empty pouches and pouches with only 1 item in order to avoid opening trapped pouches by mistake
# Script will also optionally open your potion satchel, wizard satchel (ignores decorative), loot bag and lockboxs if enabled below








