Protected
constructorReadonly
headRotation of the head across pitch and yaw angles.
This property can throw when used.
Causes the simulated player to make an attack 'swipe'. Returns true if the attack was performed - for example, the player was not on cooldown and had a valid target. Target selection is performed by raycasting from the player's head.
This function can throw errors.
Causes the simulated player to attack the provided target. Returns true if the attack was performed - for example, the player was not on cooldown and had a valid target. The attack can be performed at any distance and does not require line of sight to the target entity.
This function can throw errors.
Location of the block to interact with.
Optional
direction: DirectionDirection to place the specified item within.
Destroys the block at blockLocation, respecting the rules of the server player's game mode. The block will be hit until broken, an item is used or stopBreakingBlock is called. Returns true if the block at blockLocation is solid.
This function can throw errors.
Location of the block to interact with.
Optional
direction: DirectionDirection to place the specified item within.
Causes the simulated player to interact with a block. The block at the specified block location must be solid. Returns true if the interaction was performed.
This function can throw errors.
Optional
speed: numberOrders the simulated player to move to the given block location in a straight line. If a move or navigation is already playing, this will override the last move/navigation.
This function can throw errors.
Optional
speed: numberOrders the simulated player to move to the given location in a straight line. If a move or navigation is already playing, this will override the last move/navigation.
This function can throw errors.
Optional
speed: numberOrders the simulated player to move to a specific block location using navigation. If a move or navigation is already playing, this will override the last move/walk. Note that if the simulated player gets stuck, that simulated player will stop. The player must be touching the ground in order to start navigation.
This function can throw errors.
Optional
speed: numberWill use navigation to follow the selected entity to within a one block radius. If a move or navigation is already playing, this will override the last move/navigation.
This function can throw errors.
Optional
speed: numberOrders the simulated player to move to a specific location using navigation. If a move or navigation is already playing, this will override the last move/walk. Note that if the simulated player gets stuck, that simulated player will stop. The player must be touching the ground in order to start navigation.
This function can throw errors.
A list of locations to use for routing.
Optional
speed: numberNet speed to use for doing the navigation.
Use navigation to follow the route provided via the locations parameter. If a move or navigation is already playing, this will override the last move/navigation.
This function can throw errors.
Item to set.
Slot to place the given item in.
Optional
selectSlot: booleanWhether to set the selected slot once set.
Sets a particular item for the simulated player.
This function can throw errors.
Index of the slot to use.
Location to use the item upon.
Optional
direction: DirectionDirection to place the specified item within.
Optional
faceLocationX: numberBlock-face-relative X position where to place the item.
Optional
faceLocationY: numberBlock-face-relative Y position where to place the item.
Causes the simulated player to use an item in their inventory on a block. The block at the specified block location must be solid. Returns true if the item was used.
This function can throw errors.
Item to use.
Location to use the item upon.
Optional
direction: DirectionDirection to place the specified item within.
Optional
faceLocationX: numberBlock-face-relative X position where to place the item.
Optional
faceLocationY: numberBlock-face-relative Y position where to place the item.
Causes the simulated player to use an item on a block. The block at the specified block location must be solid. Returns true if the item was used.
This function can throw errors.
A simulated player can be used within GameTests to represent how a player moves throughout the world and to support testing of how entities and the environment will react to a player. This type derives much of its structure and methods from the @minecraft/server.Player type.