time Query
Get the current time of day, in game ticks.
gameplay.timeQuery(TimeQuery.GameTime);
The Minecraft wiki has a table to convert time of day to Minecraft ticks.
Parameters
- query: the type of time to query
gametime
: the number of game ticks since the creation of the worlddaytime
: the current time of day in the gameday
: the number of game days since the creation of the worldreal life
: the real time of day, in game ticks
Example
Set the time of day in the game to the same time as real life.
gameplay.timeSet(gameplay.timeQuery(TimeQuery.RealLife));