Dump non-masterwork clothing #5603
-
|
I would like to be able to automatically dump my worn clothing without driving my crafters insane. The default stuff I've found so far dumps masterworks too, so I've been trying to make something myself through the item command. I came up with this: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
The problem here is that In the mean time, you can achieve this by making them dump into a stockpile that is set to periodically claim (unforbid) the items. That stockpile then feeds into two separate stockpiles (or minecarts for quantum stockpiling/dumping); one for masterworks and one for non-masterworks (the native interface allows you to filter for both base quality and improvement quality). You can send the non-masterworks into a minecart that dumps into magma/atom-smasher. The downside is that this is labor intensive compared to just dumping straight into magma/atom-smasher. |
Beta Was this translation helpful? Give feedback.
The problem here is that
itemis only looking at the base quality and does not look at the improvement quality. This should be easy to fix, I think, with a change to usegetOverallQualitymethod instead.In the mean time, you can achieve this by making them dump into a stockpile that is set to periodically claim (unforbid) the items. That stockpile then feeds into two separate stockpiles (or minecarts for quantum stockpiling/dumping); one for masterworks and one for non-masterworks (the native interface allows you to filter for both base quality and improvement quality). You can send the non-masterworks into a minecart that dumps into magma/atom-smasher.
The downside is that this is labor…