Part Selections and Filters

A part filter can be used to get a selection of entities from a group, then be filtered by part type, part tag, block display block, or item display item.

Creating a Part Filter

set {_partfilter} to a new part filter from {_activegroup}

Filter by Part Tag

#Filter parts with the tag "body" (Inclusive)
deu filter {_partfilter} with tag "body"

#Filter parts with the tag "head" but exclude if they have "eye" (Inclusive, Exclusive)
deu filter {_partfilter} with tag \"head\" and without tag "eye"

#Filter all parts except ones with the tag "head" (Exclusive)
deu filter {_partfilter} without tag "head"

Filter by Block Display Block

#Filter block display parts of the stone block type (Inclusive)
deu filter {_partfilter} with block stone

#Filter out block display parts with the following tag (Exclusive)
deu filter {_partfilter} without blocks tag contents of minecraft tag "impermeable"

Filter by Item Display Item

Filter by Part Type

Reset, Refresh, or Remove a Part Filter

Last updated