Specific Item Finder/Organizer by mementumtrader
Related: Snippetfindfind and move items in a container to another containerfind itemslumber mapsore mapsorganizationorganizer
Description from the author:
# Author: MementumTV, Updated: 4/10/2025
# 1. Select a container filled with various maps
# 2. Select a 2nd container to move specific map types into
# This can also be used with other item types, not just maps.
# Update the word in the item description or name on line 21 to find and move specific items.
overhead "Select the unorganized container of maps" 89
setvar mapContainer
overhead "Select map container to move maps into" 89
setvar newContainer
@clearignore
while findtype '5356' mapContainer as map
getlabel map desc
# Change the name of lumber type in quotes below to find the specific maps you want
# Example: Using bronze below in quotes will find all bronzewood lumber maps and move them from one container to another
if "bronze" in desc
lift map
drop newContainer -1 -1 -1
wait 650
endif
@ignore map
endwhile
@clearignore
overhead "Map organization completed!"I needed a way to find specific lumber maps in a container filled with hundreds. So, I created this simple script to help find by a word in the name or description of the maps and move it into another container for me.