Organize Unidentified Spellbooks by Jaseowns
# Only moves Certain Unidentified Items by Jaseowns
# UO Outlands
# Requirements: Loot! (Script will ask to set my_loot_to_id_bag with where items should go)
# Additional Info:
# This script will only move spellbooks
# Add items to the loot_items list as you get more.
# Crooks, Weapons, etc
# (whatever your character might carry that you don't want organizer agents moving)
# Combine with other https://outlands.uorazorscripts.com/tags/organizer scripts
removelist loot_items
createlist loot_items
pushlist loot_items 3834
if not varexist my_loot_to_id_bag
overhead "Select where you want to store items..." 88
setvar my_loot_to_id_bag
endif
foreach loot in loot_items
sysmsg loot
while findtype loot backpack as item
overhead item
getlabel item description
overhead description 88
if unidentified in description
lift item
wait 250
drop my_loot_to_id_bag -1 -1 -1
else
ignore item
wait 250
endif
endwhile
endfor
clearignore