Represents a player within the world.

Hierarchy

Constructors

Properties

dimension: Dimension

Dimension that the entity is currently within.

Throws

This property can throw when used.

headLocation: Location

Location of the center of the head component of the player.

Throws

This property can throw when used.

id: string

Unique identifier of the player. This identifier is intended to be consistent across loads of a world instance. No meaning should be inferred from the value and structure of this unique identifier - do not parse or interpret it.

Throws

This property can throw when used.

isSneaking: boolean

True if the player is currently using a sneaking movement.

location: Vector3

Current location of the player.

Throws

This property can throw when used.

name: string

Name of the player.

Throws

This property can throw when used.

nameTag: string

Optional name tag of the player.

onScreenDisplay: ScreenDisplay

Contains methods for manipulating the on-screen display of a Player.

rotation: XYRotation

Main rotation of the entity.

Throws

This property can throw when used.

scoreboard: ScoreboardIdentity

Returns a scoreboard identity that represents this entity.

Throws

This property can throw when used.

selectedSlot: number

Manages the selected slot in the player's hotbar.

target: Entity

Retrieves or sets an entity that is used as the target of AI-related behaviors, like attacking. For players, which don't use any AI semantics, this property does not do anything.

Throws

This property can throw when used.

typeId: string

Unique identifier of the type of the entity - for example, 'minecraft:player'.

Throws

This property can throw when used.

velocity: Vector

Current speed of the player across X, Y, and Z dimensions.

Throws

This property can throw when used.

viewVector: Vector

Vector of the current view of the player.

Throws

This property can throw when used.

Methods

  • Parameters

    • effectType: EffectType

      Type of effect to add to the entity.

    • duration: number

      Amount of time, in ticks, for the effect to apply.

    • Optional amplifier: number

      Optional amplification of the effect to apply.

    • Optional showParticles: boolean

    Returns void

    Remarks

    Adds an effect, like poison, to the entity.

    Throws

    This function can throw errors.

  • Parameters

    • tag: string

      Content of the tag to add.

    Returns boolean

    Remarks

    Adds a specified tag to an entity.

    Throws

    This function can throw errors.

  • Parameters

    Returns Block

    Remarks

    Gets the first block that intersects with the vector of the view of this entity.

    Throws

    This function can throw errors.

  • Parameters

    • componentId: string

      The identifier of the component (e.g., 'minecraft:rideable') to retrieve. If no namespace prefix is specified, 'minecraft:' is assumed. If the component is not present on the entity, undefined is returned.

    Returns IEntityComponent

    Remarks

    Gets a component (that represents additional capabilities) for an entity.

  • Parameters

    • identifier: string

    Returns string | number | boolean

    Returns the value for the property, or undefined if the property has not been set.

    Remarks

    Returns a property value.

    Throws

    This function can throw errors.

  • Parameters

    Returns Effect

    Effect object for the specified effect, or undefined if the effect is not present.

    Remarks

    Returns the effect for the specified EffectType on the entity, or undefined if the effect is not present.

    Throws

    This function can throw errors.

  • Parameters

    Returns Entity[]

    Remarks

    Gets the first entity that intersects with the vector of the view of this entity.

    Throws

    This function can throw errors.

  • Parameters

    • itemCategory: string

      Specifies the cooldown category to retrieve the current cooldown for.

    Returns number

    Remarks

    Gets the current item cooldown time for a particular cooldown category.

    Throws

    This function can throw errors.

  • Returns string[]

    Remarks

    Returns all tags associated with an entity.

    Throws

    This function can throw errors.

  • Parameters

    • componentId: string

      The identifier of the component (e.g., 'minecraft:rideable') to retrieve. If no namespace prefix is specified, 'minecraft:' is assumed.

    Returns boolean

    Remarks

    Returns true if the specified component is present on this entity.

  • Parameters

    • tag: string

      Identifier of the tag to test for.

    Returns boolean

    Remarks

    Tests whether an entity has a particular tag.

    Throws

    This function can throw errors.

  • Returns boolean

  • Returns void

    Remarks

    Kills this entity. The entity will drop loot as normal.

    Throws

    This function can throw errors.

  • Parameters

    • soundID: string

      Identifier of the sound to play.

    • Optional soundOptions: SoundOptions

      Additional optional options for the sound.

    Returns void

    Remarks

    Plays a sound that only this particular player can hear.

    Throws

    This function can throw errors.

  • Parameters

    • id: string
    • value: string

    Returns void

  • Parameters

    • identifier: string

    Returns boolean

    Remarks

    Removes a specified property.

    Throws

    This function can throw errors.

  • Parameters

    • tag: string

      Content of the tag to remove.

    Returns boolean

    Remarks

    Removes a specified tag from an entity.

    Throws

    This function can throw errors.

  • Parameters

    • commandString: string

      Command to run. Note that command strings should not start with slash.

    Returns Promise<CommandResult>

    For commands that return data, returns a JSON structure with command response values.

    Remarks

    Runs a particular command asynchronously from the context of this entity. Note that there is a maximum queue of 128 asynchronous commands that can be run in a given tick.

    Throws

    This function can throw errors.

  • Parameters

    • identifier: string
    • value: string | number | boolean

      Data value of the property to set.

    Returns void

    Remarks

    Sets a specified property to a value.

    Throws

    This function can throw errors.

  • Parameters

    • isOp: boolean

    Returns void

  • Parameters

    • degreesX: number
    • degreesY: number

    Returns void

    Remarks

    Sets the main rotation of the entity.

    Throws

    This function can throw errors.

  • Parameters

    • velocity: Vector3

      X/Y/Z components of the velocity.

    Returns void

    Remarks

    Sets a velocity for the entity to move with.

    Throws

    This function can throw errors.

  • Parameters

    • itemCategory: string

      Specifies the cooldown category to retrieve the current cooldown for.

    • tickDuration: number

      Duration in ticks of the item cooldown.

    Returns void

    Remarks

    Sets the item cooldown time for a particular cooldown category.

    Throws

    This function can throw errors.

  • Parameters

    • location: Vector3

      New location for the player.

    • dimension: Dimension

      Dimension to move the selected player to.

    • xRotation: number

      X rotation of the player after teleportation.

    • yRotation: number

      Y rotation of the player after teleportation.

    • Optional keepVelocity: boolean

    Returns void

    Remarks

    Teleports the selected player to a new location

    Throws

    This function can throw errors.

  • Parameters

    • location: Vector3

      New location for the player.

    • dimension: Dimension

      Dimension to move the selected player to.

    • facingLocation: Vector3

      Location that this player will be facing.

    • Optional keepVelocity: boolean

    Returns void

    Remarks

    Teleports the selected player to a new location, and will have the player facing a specified location.

    Throws

    This function can throw errors.

  • Parameters

    Returns void

    Remarks

    Sends a message that is displayed on the connected client for this player.

    Throws

    This function can throw errors.

  • Parameters

    • eventName: string

      Name of the entity type event to trigger. If a namespace is not specified, minecraft: is assumed.

    Returns void

    Remarks

    Triggers an entity type event. For every entity, a number of events are defined in an entities' definition for key entity behaviors; for example, creepers have a minecraft:start_exploding type event.

    Throws

    This function can throw errors.