Entity Documentation - random_chance

Returns true if the random chance rolls 0 out of a specified max range.

An example is if a value of 5 is set, a random number in the range of 0 - 5 will be selected.

Parameters

Name Default Value Type Description
value not set Integer (Required) An integer value.

Note

random_chance can also use subject and operator parameters but they are optional.

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.

Examples

Full

{ "test": "random_chance", "subject": "self", "operator": "equals", "value": "0" }

Short (using Defaults)

{ "test": "random_chance", "value": "0" }

Vanilla entities examples

{ "test": "random_chance", "value": 800 }

Vanilla entities examples using random_chance