Name | Note |
Related Guide Page | https://guide.denizenscript.com/guides/advanced/notables.html |
Syntax | note [<object>/remove] [as:<name>] |
Short Description | Adds or removes a named note of an object to the server. |
Full Description | Add or remove a 'note' to the server, persistently naming an object that can be referenced in events or scripts.
Only works for object types that are 'notable'. Noted objects are "permanent" versions of other ObjectTags. (See: ObjectTags) Noted objects keep their properties when added. Notable object types: CuboidTag, EllipsoidTag, PolygonTag, LocationTag, InventoryTag |
Related Tags | <server.notes[<type>]> Deprecated in favor of util.notes
<CuboidTag.note_name> Gets the name of a noted CuboidTag. If the cuboid isn't noted, this is null.
<EllipsoidTag.note_name> Gets the name of a noted EllipsoidTag. If the ellipsoid isn't noted, this is null.
<PolygonTag.note_name> Gets the name of a noted PolygonTag. If the polygon isn't noted, this is null.
<InventoryTag.note_name> Gets the name of a noted InventoryTag. If the inventory isn't noted, this is null.
<LocationTag.note_name> Gets the name of a noted LocationTag. If the location isn't noted, this is null.
|
Usage Example |
|
Usage Example |
|
Usage Example |
|
Synonyms (Search Aid) | notable |
Group | core |
Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/scripts/commands/core/NoteCommand.java#L26 |