Skip to content

Latest commit

 

History

History
82 lines (62 loc) · 1.9 KB

File metadata and controls

82 lines (62 loc) · 1.9 KB
author ms.author title description ms.service
mammerla
mikeam
Entity Documentation - trusts
A reference document detailing the 'trusts' entity filter
minecraft-bedrock-edition

Entity Documentation - trusts

Returns true if the subject is trusted by entity.

Parameters

Note

trusts does not require any parameters to work properly. It can be used as a standalone filter.

trusts can also use subject, operator and value parameters.

subject

Options Description
block The block involved with the interaction.
damager The damaging entity involved with the interaction.
other The other member of an interaction, not the caller.
parent The caller's current parent.
player The player involved with the interaction.
self The entity or object calling the test
target The caller's current target.

operator

Options Description
!= Test for inequality.
< Test for less-than the value.
<= Test for less-than or equal to the value.
<> Test for inequality.
= Test for equality.
== Test for equality.
> Test for greater-than the value.
>= Test for greater-than or equal to the value.
equals Test for equality.
not Test for inequality.

value

Name Default Value Type Description
value true Boolean (Optional) true or false.

Example

Full

{ "test": "trusts", "subject": "self", "operator": "equals", "value": true}

Short (using Defaults)

{ "test": "trusts" }

Vanilla entities examples

fox

{
    "test": "trusts",
    "subject": "other",
    "operator": "==",
    "value": true
}

Vanilla entities using trusts