Denizen Script Tags


Tags are always written with a <between these marks>, and are critical to scripts, as the primary way to read data.
Learn about how tags work in The Beginner's Guide.


Showing 1 out of 2484 tags...
Name<MaterialTag.is_interactable>
ReturnsElementTag(Boolean)
DescriptionReturns whether the material can be interacted with.
Some blocks such as piston heads and stairs are considered interactable.
Note that this will return true if at least one state of a material has interaction handling.
Generated Example
- if <material[stone].is_interactable>:
    - narrate "it was true!"
- else:
    - narrate "it was false!"
Sourcehttps://github.com/DenizenScript/Denizen/blob/dev/plugin/src/main/java/com/denizenscript/denizen/objects/MaterialTag.java#L364