Functions
As of 0.7.0
$executor_name()Returns the player name of the command executor.
$get_database_value(key)Returns the value of
keyfrom the database if it exists. Example:commandaliases database put hello.key world.valuethensay $get_database_value(hello.key)and it will say in chatworld.value
$get_dimension(player)Returns the dimension registry key of the player in the argument. Example:
say $get_dimension(jeb_)and it will say in chatminecraft:overworld
$get_pos_x(player)Returns player position x in the argument. Example:
say $get_pos_x(jeb_)and it will say in chat10.25
$get_pos_y(player)Returns player position y in the argument. Example:
say $get_pos_y(jeb_)and it will say in chat64.5
$get_pos_z(player)Returns player position z in the argument. Example:
say $get_pos_z(jeb_)and it will say in chat-10.25
$get_yaw(player)Returns player yaw in the argument. Example:
say $get_yaw(jeb_)and it will say in chat0
$get_pitch(player)Returns player pitch in the argument. Example:
say $get_pitch(jeb_)and it will say in chat90
$get_block_pos_x(player)Returns player block position x in the argument. Example:
say $get_block_pos_x(jeb_)and it will say in chat10
$get_block_pos_y(player)Returns player block position y in the argument. Example:
say $get_block_pos_y(jeb_)and it will say in chat64
$get_block_pos_z(player)Returns player block position z in the argument. Example:
say $get_block_pos_z(jeb_)and it will say in chat-10
Last updated
Was this helpful?