Entity Documentation - hourly_clock_time

Compares the current 24 hour time with an int value in the range[0, 24000]

Parameters

Name Default Value Type Description
value not set Integer (Required) An integer value set between 0 and 24000

Note

hourly_clock_time 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.

Example

Full

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

Short (using Defaults)

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

Vanilla entities examples

villager_v2

{ "test": "hourly_clock_time", "operator": ">=", "value": 0 },
{ "test": "hourly_clock_time", "operator": "<", "value": 8000 }

Vanilla entities using hourly_clock_time