Last active
March 3, 2026 21:34
-
-
Save leshikus/e63350729d4c5d28c74d7aa5d49e9a37 to your computer and use it in GitHub Desktop.
Simple item sorting utilitities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # dump clothes to a stockpile | |
| multicmd item dump -t armor -c cloth; item dump -t pants -c cloth; item dump -t gloves -c cloth; item dump -t shoes -c cloth | |
| multicmd item dump -t armor -c yarn; item dump -t pants -c yarn; item dump -t gloves -c yarn; item dump -t shoes -c yarn | |
| multicmd item dump -t armor -c silk; item dump -t pants -c silk; item dump -t gloves -c silk; item dump -t shoes -c silk | |
| multicmd item dump -t armor -c plant; item dump -t pants -c plant; item dump -t gloves -c plant; item dump -t shoes -c plant | |
| multicmd item dump -t armor -c silk; item dump -t pants -c leather; item dump -t gloves -c leather; item dump -t shoes -c leather | |
| autodump | |
| # dump unusable large clothes to the depot | |
| multicmd item dump -t armor large; item dump -t pants large; item dump -t gloves large; item dump -t shoes large | |
| multicmd item dump -t armor -c cloth; item dump -t pants -c cloth; item dump -t gloves -c cloth; item dump -t shoes -c cloth; item dump -t armor -c yarn; item dump -t pants -c yarn; item dump -t gloves -c yarn; item dump -t shoes -c yarn; item dump -t armor -c silk; item dump -t pants -c silk; item dump -t gloves -c silk; item dump -t shoes -c silk; item dump -t armor -c plant; item dump -t pants -c plant; item dump -t gloves -c plant; item dump -t shoes -c plant; item dump -t armor -c silk; item dump -t pants -c leather; item dump -t gloves -c leather; item dump -t shoes -c leather | |
| multicmd item melt -t coin --verbose; item melt -t trapparts --verbose -Q 4; item melt -t armor --verbose -Q 3; item melt -t pants --verbose -Q 3; item melt -t shoes --verbose -Q 3; item melt -t gloves --verbose -Q 3; item melt -t shield --verbose -Q 3; item melt -t pants leggings --verbose -Q 4; item melt -t weapon --verbose -Q 3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment