Skip to main content

Entity

The main entity object for BeAPI

warning

You should never have to construct this class yourself.

Constructor

new Entity(client, entity);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
clientClientnullConstructed Client instance.
entityIEntitynullMinecraft IEntity Object.

Methods

destroy

Destroys the entity object.

destroy();

Returns

void


getIEntity

Returns the vanilla entity object.

getIEntity();

Returns

IEntity


getRuntimeId

Returns the entity's runtime id.

getRuntimeId();

Returns

number


getId

Returns the entity's mob id.

getId();

Returns

string


getNameTag

Returns the entity's above head name.

getNameTag();

Returns

string


setNameTag

Sets the entity's above head name.

setNameTag(nametag);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
nametagstringundefinedNametag for the entity.

Returns

void


getTags

Returns the all the tags on the entity.

getTags();

Returns

string[]


hasTag

Checks if a entity has a specific tag.

hasTag(tag);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
tagstringundefinedThe tag to check for.

Returns

boolean


addTag

Adds a tag to the entity.

addTag(tag);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
tagstringundefinedThe tag to add.

Returns

boolean


removeTag

Removes a tag from the entity.

removeTag(tag);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
tagstringundefinedThe tag to remove.

Returns

boolean


executeCommand

Executes a command as the entity.

executeCommand(cmd, debug);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
cmdstringundefinedMinecraft command to execute.
debugboolean?✔️falsePipe logs to debug console.

Returns

ServerCommandResponse


getScore

Gets the score of an objective.

getScore(objective);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
objectivestringundefinedThe scoreboard objective name.

Returns

number


getLocation

Gets the entity's current location.

getLocation();

Returns

Location


getDimension

Gets the entity's current dimension.

getDimension();

Returns

IDimension


getDimensionName

Gets the entity's current dimension name.

getDimensionName();

Returns

Dimension


getInventory

Gets the entity's inventory.

getInventory();

Returns

Inventory | undefined


getHealth

Gets the entity's health.

getHealth();

Returns

Health


getVelocity

Gets the entity's current velocity.

getVelocity();

Returns

Vector


setVelocity

Sets the entity's velocity.

setVelocity(velocity);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
velocityVectorundefinedThe velocity vector.

Returns

void


teleport

Teleports the entity.

teleport(location, dimension, xrot, yrot);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
locationILocationundefinedThe location to be teleported.
dimensionIDimensionundefinedThe dimension to be teleported.
xrotnumberundefinedThe xrot of the entity.
yrotnumberundefinedThe yrot of the entity.

Returns

void


teleportFacing

Teleports the entity facing a direction.

teleportFacing(location, dimension, facingLocaton);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
locationILocationundefinedThe location to be teleported.
dimensionIDimensionundefinedThe dimension to be teleported.
facingLocationILocationundefinedThe facing location to be teleported.

Returns

void


triggerEvent

Triggers a entity event from the entity.json.

triggerEvent(event);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
eventstringundefinedThe event to be triggered.

Returns

void


getRotation

Gets the rotation of the entity.

getRotation();

Returns

number


getHeadLocation

Gets the location of the entity's head.

getHeadLocation();

Returns

ILocation