Player
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.type.player.Player;
Extends
Player extends LivingEntity
.
Implements
Player
implements the following interfaces:
Nameable
,EntityAccess
,CommandSource
,IAttachmentHolder
Undocumented Interfaces
IPlayerExtension
,Attackable
,ILivingEntityExtension
,SyncedDataHolder
,ScoreHolder
,IEntityExtension
,INBTSerializable<CompoundTag>
Members
// Player.absorptionAmount as floatmyPlayer.absorptionAmount
Return Type:
float
Returns: The absorption amount.
// Player.absorptionAmount() as float;myPlayer.absorptionAmount();
Return Type:
float
// Player.acceptsFailure as boolmyPlayer.acceptsFailure
Return Type:
bool
Returns: True if the commands from this source should return failure messages, false otherwise.
// Player.acceptsFailure() as bool;myPlayer.acceptsFailure();
Return Type:
bool
// Player.acceptsSuccess as boolmyPlayer.acceptsSuccess
Return Type:
bool
Returns: True if the commands from this source should return successful messages, false otherwise.
// Player.acceptsSuccess() as bool;myPlayer.acceptsSuccess();
Return Type:
bool
Returns: The active effects.
myPlayer.activeEffects();
Return Type:
Collection<MobEffectInstance>
myPlayer.activeEffectsMap
Return Type:
MobEffectInstance[MobEffect]
Returns: The active effects map.
myPlayer.activeEffectsMap();
Return Type:
MobEffectInstance[MobEffect]
Returns: True if the effect was added, false otherwise.
myPlayer.addEffect(myMobEffectInstance);
Parameters:
Return Type:
bool
Returns: True if the effect was added, false otherwise.
myPlayer.addEffect(myMobEffectInstance, myEntity);
Parameters:
Return Type:
bool
Returns: true if the tag was added.
// Player.addTag(tagName as string) as bool;myPlayer.addTag(myString);
Parameters:
tagName: string
Type: string
- The name of the tag to add.
Return Type:
bool
// Player.airSupply as intmyPlayer.airSupply
Return Type:
int
Returns: The current air supply of the entity.
// Player.airSupply() as int;myPlayer.airSupply();
Return Type:
int
// Player.alwaysAccepts as boolmyPlayer.alwaysAccepts
Return Type:
bool
Returns: True if the command source always accepts, false otherwise.
// Player.alwaysAccepts() as bool;myPlayer.alwaysAccepts();
Return Type:
bool
This is a value from 0 to 1 that represents the percentage of the entity's body that is covered by armor.
// Player.armorCoverPercentage as floatmyPlayer.armorCoverPercentage
Return Type:
float
This is a value from 0 to 1 that represents the percentage of the entity's body that is covered by armor.
Returns: The armor cover percentage.
// Player.armorCoverPercentage() as float;myPlayer.armorCoverPercentage();
Return Type:
float
// Player.armorValue as intmyPlayer.armorValue
Return Type:
int
Returns: The armor value.
// Player.armorValue() as int;myPlayer.armorValue();
Return Type:
int
// Player.arrowCount as intmyPlayer.arrowCount
Return Type:
int
Returns: The arrow count.
// Player.arrowCount() as int;myPlayer.arrowCount();
Return Type:
int
// Player.attackable as boolmyPlayer.attackable
Return Type:
bool
Returns: True if the entity is attackable, false otherwise.
// Player.attackable() as bool;myPlayer.attackable();
Return Type:
bool
myPlayer.awardStat(myResourceLocation);
Parameters:
myPlayer.awardStat(myResourceLocation, myInt);
Parameters:
amount: int
Type: int
- The amount to award. // Player.bbHeight as floatmyPlayer.bbHeight
Return Type:
float
Returns: The height of the bounding box of the entity.
// Player.bbHeight() as float;myPlayer.bbHeight();
Return Type:
float
// Player.bbWidth as floatmyPlayer.bbWidth
Return Type:
float
Returns: The width of the bounding box of the entity.
// Player.bbWidth() as float;myPlayer.bbWidth();
Return Type:
float
// Player.blockX as intmyPlayer.blockX
Return Type:
int
Returns: The x coordinate of the entity.
// Player.blockX() as int;myPlayer.blockX();
Return Type:
int
// Player.blockY as intmyPlayer.blockY
Return Type:
int
Returns: The y coordinate of the entity.
// Player.blockY() as int;myPlayer.blockY();
Return Type:
int
// Player.blockZ as intmyPlayer.blockZ
Return Type:
int
Returns: The z coordinate of the entity.
// Player.blockZ() as int;myPlayer.blockZ();
Return Type:
int
Returns: True if this entity can attack the target, false otherwise.
myPlayer.canAttack(myLivingEntity);
Parameters:
Return Type:
bool
Returns: True if this entity can be affected by the effect, false otherwise.
myPlayer.canBeAffected(myMobEffectInstance);
Parameters:
effectInstance: MobEffectInstance
Type: MobEffectInstance
- The effect to check if this entity can be affected by.
Return Type:
bool
// Player.canBeCollidedWith as boolmyPlayer.canBeCollidedWith
Return Type:
bool
Returns: true if the entity can be collided with.
// Player.canBeCollidedWith() as bool;myPlayer.canBeCollidedWith();
Return Type:
bool
// Player.canBeSeenAsEnemy as boolmyPlayer.canBeSeenAsEnemy
Return Type:
bool
Returns: True if this entity can be seen as an enemy, false otherwise.
// Player.canBeSeenAsEnemy() as bool;myPlayer.canBeSeenAsEnemy();
Return Type:
bool
// Player.canBeSeenByAnyone as boolmyPlayer.canBeSeenByAnyone
Return Type:
bool
Returns: True if this entity can be seen by anyone, false otherwise.
// Player.canBeSeenByAnyone() as bool;myPlayer.canBeSeenByAnyone();
Return Type:
bool
// Player.canBreatheUnderwater as boolmyPlayer.canBreatheUnderwater
Return Type:
bool
Returns: True if the entity can breathe underwater, false otherwise.
// Player.canBreatheUnderwater() as bool;myPlayer.canBreatheUnderwater();
Return Type:
bool
Returns: true if the entity can collide with the given entity.
myPlayer.canCollideWith(myEntity);
Return Type:
bool
Returns: Whether the player can eat.
// Player.canEat(ignoreHunger as bool) as bool;myPlayer.canEat(myBool);
Parameters:
ignoreHunger: bool
Type: bool
- Whether to ignore hunger.
Return Type:
bool
// Player.canFreeze as boolmyPlayer.canFreeze
Return Type:
bool
Returns: Whether the entity can freeze.
// Player.canFreeze() as bool;myPlayer.canFreeze();
Return Type:
bool
This does not check if pvp is enabled, it checks if players are on the same scoreboard team.
Returns: Whether the player can harm the other player.
myPlayer.canHarmPlayer(myPlayer);
Return Type:
bool
// Player.canUseGameMasterBlocks as boolmyPlayer.canUseGameMasterBlocks
Return Type:
bool
Returns: Whether the player can use game master blocks.
// Player.canUseGameMasterBlocks() as bool;myPlayer.canUseGameMasterBlocks();
Return Type:
bool
// Player.causeFoodExhaustion(exhaustion as float);myPlayer.causeFoodExhaustion(myFloat);
Parameters:
exhaustion: float
Type: float
- The amount of exhaustion to add. // Player.clearFire();myPlayer.clearFire();
// Player.clearSleepingPos();myPlayer.clearSleepingPos();
Returns: true if the entity is closer than the given distance to the other entity.
myPlayer.closerThan(myEntity, myDouble);
Parameters:
Return Type:
bool
// Player.cooldowns as ItemCooldownsmyPlayer.cooldowns
Return Type:
ItemCooldowns
Returns: The cooldowns of the player.
myPlayer.cooldowns();
Return Type:
ItemCooldowns
// Player.currentItemAttackStrengthDelay as floatmyPlayer.currentItemAttackStrengthDelay
Return Type:
float
Returns: The current item attack strength delay of the player.
// Player.currentItemAttackStrengthDelay() as float;myPlayer.currentItemAttackStrengthDelay();
Return Type:
float
net.minecraft.world.entity.item.ItemEntity
s who's item is in the dampens_vibrations item tag.// Player.dampensVibrations as boolmyPlayer.dampensVibrations
Return Type:
bool
net.minecraft.world.entity.item.ItemEntity
s who's item is in the dampens_vibrations item tag.Returns: true if the entity dampens vibrations.
// Player.dampensVibrations() as bool;myPlayer.dampensVibrations();
Return Type:
bool
myPlayer.die(myDamageSource);
Parameters:
// Player.dimensionChangingDelay as intmyPlayer.dimensionChangingDelay
Return Type:
int
Returns: The dimension changing delay of the entity.
// Player.dimensionChangingDelay() as int;myPlayer.dimensionChangingDelay();
Return Type:
int
// Player.disableShield();myPlayer.disableShield();
// Player.discard();myPlayer.discard();
// Player.dismountsUnderwater as boolmyPlayer.dismountsUnderwater
Return Type:
bool
Returns: true if the entity dismounts underwater.
// Player.dismountsUnderwater() as bool;myPlayer.dismountsUnderwater();
Return Type:
bool
myPlayer.displayClientMessage(myComponent, myBool);
Returns: The squared distance to the given position.
// Player.distanceToSqr(x as double, y as double, z as double) as double;myPlayer.distanceToSqr(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to get the squared distance to. y: double
Type: double
- The y position to get the squared distance to. z: double
Type: double
- The z position to get the squared distance to.
Return Type:
double
Returns: The item entity that was dropped.
myPlayer.drop(myItemStack, myBool);
Parameters:
Return Type:
ItemEntity
Returns: The item that the entity ate.
myPlayer.eat(myLevel, myItemStack);
Parameters:
Return Type:
ItemStack
// Player.ejectPassengers();myPlayer.ejectPassengers();
// Player.enchantmentSeed as intmyPlayer.enchantmentSeed
Return Type:
int
Returns: The enchantment seed of the player.
// Player.enchantmentSeed() as int;myPlayer.enchantmentSeed();
Return Type:
int
// Player.experienceLevel as intmyPlayer.experienceLevel
Return Type:
int
// Player.experienceLevel = (level as int);myPlayer.experienceLevel = myInt;
Parameters:
level: int
Type: int
- The experience level to set. Returns: The experience level of the player.
// Player.experienceLevel() as int;myPlayer.experienceLevel();
Return Type:
int
// Player.experienceLevel(level as int);myPlayer.experienceLevel(myInt);
Parameters:
level: int
Type: int
- The experience level to set. // Player.eyeHeight as floatmyPlayer.eyeHeight
Return Type:
float
Returns: The eye height of the entity.
// Player.eyeHeight() as float;myPlayer.eyeHeight();
Return Type:
float
// Player.eyeY as doublemyPlayer.eyeY
Return Type:
double
Returns: The y coordinate of the entity's eyes.
// Player.eyeY() as double;myPlayer.eyeY();
Return Type:
double
// Player.fallFlyingTicks as intmyPlayer.fallFlyingTicks
Return Type:
int
Returns: The ticks that the entity has been flying with an elytra.
// Player.fallFlyingTicks() as int;myPlayer.fallFlyingTicks();
Return Type:
int
// Player.fireImmune as boolmyPlayer.fireImmune
Return Type:
bool
Returns: true if the entity is fire immune.
// Player.fireImmune() as bool;myPlayer.fireImmune();
Return Type:
bool
// Player.fireTicks as intmyPlayer.fireTicks
Return Type:
int
// Player.fireTicks = (ticks as int);myPlayer.fireTicks = myInt;
Parameters:
ticks: int
Type: int
- The number of ticks to set the remaining fire ticks to. // Player.fireTicks(ticks as int);myPlayer.fireTicks(myInt);
Parameters:
ticks: int
Type: int
- The number of ticks to set the remaining fire ticks to. Returns: The remaining fire ticks of the entity.
// Player.fireTicks() as int;myPlayer.fireTicks();
Return Type:
int
// Player.fluidJumpThreshold as doublemyPlayer.fluidJumpThreshold
Return Type:
double
Returns: The fluid jump threshold of the entity.
// Player.fluidJumpThreshold() as double;myPlayer.fluidJumpThreshold();
Return Type:
double
myPlayer.forceAddEffect(myMobEffectInstance, myEntity);
Parameters:
effectInstance: MobEffectInstance
Type: MobEffectInstance
- The effect to force this entity to have. myPlayer.getAttachmentData<T>(myAttachmentType);
Parameters:
type: AttachmentType<T>
Type: AttachmentType<T>
Return Type:
T
myPlayer.getAttachmentData<T>(mySupplier);
Parameters:
type: Supplier<AttachmentType<T>>
Type: Supplier<AttachmentType<T>>
Return Type:
T
Returns: The attribute.
myPlayer.getAttribute(myAttribute);
Return Type:
AttributeInstance
Returns: The base attribute value.
myPlayer.getAttributeBaseValue(myAttribute);
Return Type:
double
BlockState
.Returns: The destroy speed of the player for the given block state.
myPlayer.getDestroySpeed(myBlockState);
Parameters:
Return Type:
float
MobEffectInstance
for the given effect on this entity.Returns: The effect instance.
myPlayer.getEffect(myMobEffect);
Return Type:
MobEffectInstance
Returns: The item in the slot.
myPlayer.getItemBySlot(myEquipmentSlot);
Parameters:
Return Type:
ItemStack
Returns: The item in the hand.
myPlayer.getItemInHand(myInteractionHand);
Parameters:
Return Type:
ItemStack
Returns: The swim amount.
// Player.getSwimAmount(partialTicks as float) as float;myPlayer.getSwimAmount(myFloat);
Parameters:
partialTicks: float
Type: float
- The partial ticks to get the swim amount for.
Return Type:
float
Returns: The visibility percent.
myPlayer.getVisibilityPercent(myEntity);
Return Type:
double
Returns: The x coordinate of the entity.
// Player.getX(scale as double) as double;myPlayer.getX(myDouble);
Parameters:
scale: double
Type: double
- The scale to get the x coordinate of the entity.
Return Type:
double
Returns: The y coordinate of the entity.
// Player.getY(scale as double) as double;myPlayer.getY(myDouble);
Parameters:
scale: double
Type: double
- The scale to get the y coordinate of the entity.
Return Type:
double
Returns: The z coordinate of the entity.
// Player.getZ(scale as double) as double;myPlayer.getZ(myDouble);
Parameters:
scale: double
Type: double
- The scale to get the z coordinate of the entity.
Return Type:
double
myPlayer.give(myIItemStack, myInt);
Parameters:
slot: int
(optional) Type: int
- The slot to give the item to.
Default Value: -1
// Player.giveExperienceLevels(levels as int);myPlayer.giveExperienceLevels(myInt);
Parameters:
levels: int
Type: int
- The amount of experience levels to give. // Player.giveExperiencePoints(amount as int);myPlayer.giveExperiencePoints(myInt);
Parameters:
amount: int
Type: int
- The amount of experience to give. myPlayer.hasAttachmentData<T>(myAttachmentType);
Parameters:
type: AttachmentType<T>
Type: AttachmentType<T>
Return Type:
bool
myPlayer.hasAttachmentData<T>(mySupplier);
Parameters:
type: Supplier<AttachmentType<T>>
Type: Supplier<AttachmentType<T>>
Return Type:
bool
BlockState
.Returns: Whether the player has the correct tool for the given block state.
myPlayer.hasCorrectToolForDrops(myBlockState);
Parameters:
Return Type:
bool
// Player.hasCustomName as boolmyPlayer.hasCustomName
Return Type:
bool
// Player.hasCustomName as boolmyPlayer.hasCustomName
Return Type:
bool
Returns: true if the entity has a custom name.
// Player.hasCustomName() as bool;myPlayer.hasCustomName();
Return Type:
bool
// Player.hasCustomName() as bool;myPlayer.hasCustomName();
Return Type:
bool
Returns: True if this entity has the effect, false otherwise.
myPlayer.hasEffect(myMobEffect);
Return Type:
bool
// Player.hasExactlyOnePlayerPassenger as boolmyPlayer.hasExactlyOnePlayerPassenger
Return Type:
bool
Returns: true if the entity has exactly one player passenger.
// Player.hasExactlyOnePlayerPassenger() as bool;myPlayer.hasExactlyOnePlayerPassenger();
Return Type:
bool
// Player.hasGlowingTag as boolmyPlayer.hasGlowingTag
Return Type:
bool
Returns: true if the entity is currently glowing.
// Player.hasGlowingTag() as bool;myPlayer.hasGlowingTag();
Return Type:
bool
Returns: True if the entity has an item in the slot, false otherwise.
myPlayer.hasItemInSlot(myEquipmentSlot);
Parameters:
Return Type:
bool
Returns: True if the entity has a line of sight to the entity, false otherwise.
myPlayer.hasLineOfSight(myEntity);
Return Type:
bool
Returns: true if the entity has a passenger that matches the predicate.
myPlayer.hasPassenger(myPredicate);
Parameters:
Return Type:
bool
// Player.heal(amount as float);myPlayer.heal(myFloat);
Parameters:
amount: float
Type: float
- The amount to heal. // Player.health as floatmyPlayer.health
Return Type:
float
Returns: The health of this entity.
// Player.health() as float;myPlayer.health();
Return Type:
float
DamageSource
and amount.Returns: true if the entity was hurt.
myPlayer.hurt(myDamageSource, myFloat);
Parameters:
amount: float
Type: float
- The amount of damage to deal.
Return Type:
bool
// Player.id as intmyPlayer.id
Return Type:
int
Returns: The ID of the entity.
// Player.id() as int;myPlayer.id();
Return Type:
int
BlockState
that this entity is currently inside.// Player.inBlockState as BlockStatemyPlayer.inBlockState
Return Type:
BlockState
BlockState
that this entity is currently inside.Returns: The block state that this entity is currently inside
myPlayer.inBlockState();
Return Type:
BlockState
// Player.increaseScore(score as int);myPlayer.increaseScore(myInt);
Parameters:
score: int
Type: int
- The score to increase. // Player.isAffectedByPotions as boolmyPlayer.isAffectedByPotions
Return Type:
bool
Returns: True if the entity is affected by potions, false otherwise.
// Player.isAffectedByPotions() as bool;myPlayer.isAffectedByPotions();
Return Type:
bool
// Player.isAlive as boolmyPlayer.isAlive
Return Type:
bool
Returns: true if the entity is alive.
// Player.isAlive() as bool;myPlayer.isAlive();
Return Type:
bool
// Player.isAlwaysTicking as boolmyPlayer.isAlwaysTicking
Return Type:
bool
Returns: true if the entity is always ticking.
// Player.isAlwaysTicking() as bool;myPlayer.isAlwaysTicking();
Return Type:
bool
// Player.isAttackable as boolmyPlayer.isAttackable
Return Type:
bool
Returns: true if the entity is attackable.
// Player.isAttackable() as bool;myPlayer.isAttackable();
Return Type:
bool
// Player.isAutoSpinAttack as boolmyPlayer.isAutoSpinAttack
Return Type:
bool
Returns: True if the entity is performing an auto spin attack, false otherwise.
// Player.isAutoSpinAttack() as bool;myPlayer.isAutoSpinAttack();
Return Type:
bool
// Player.isBaby as boolmyPlayer.isBaby
Return Type:
bool
Returns: True if the entity is a baby, false otherwise.
// Player.isBaby() as bool;myPlayer.isBaby();
Return Type:
bool
// Player.isBlocking as boolmyPlayer.isBlocking
Return Type:
bool
Returns: True if the entity is blocking, false otherwise.
// Player.isBlocking() as bool;myPlayer.isBlocking();
Return Type:
bool
BlockState
at the given BlockPos
.Returns: true if the entity is colliding with the block.
myPlayer.isColliding(myBlockPos, myBlockState);
Parameters:
Return Type:
bool
// Player.isCreative as boolmyPlayer.isCreative
Return Type:
bool
Returns: Whether the player is creative.
// Player.isCreative() as bool;myPlayer.isCreative();
Return Type:
bool
// Player.isCrouching as boolmyPlayer.isCrouching
Return Type:
bool
Returns: true if the entity is crouching.
// Player.isCrouching() as bool;myPlayer.isCrouching();
Return Type:
bool
// Player.isCurrentlyGlowing as boolmyPlayer.isCurrentlyGlowing
Return Type:
bool
// Player.isCurrentlyGlowing as boolmyPlayer.isCurrentlyGlowing
Return Type:
bool
Returns: True if the entity is currently glowing, false otherwise.
// Player.isCurrentlyGlowing() as bool;myPlayer.isCurrentlyGlowing();
Return Type:
bool
Returns: true if the entity is currently glowing.
// Player.isCurrentlyGlowing() as bool;myPlayer.isCurrentlyGlowing();
Return Type:
bool
// Player.isCustomNameVisible as boolmyPlayer.isCustomNameVisible
Return Type:
bool
Returns: true if the custom name is visible.
// Player.isCustomNameVisible() as bool;myPlayer.isCustomNameVisible();
Return Type:
bool
Returns: True if the entity can block the damage source, false otherwise.
myPlayer.isDamageSourceBlocked(myDamageSource);
Parameters:
Return Type:
bool
// Player.isDeadOrDying as boolmyPlayer.isDeadOrDying
Return Type:
bool
Returns: True if this entity is dead or dying, false otherwise.
// Player.isDeadOrDying() as bool;myPlayer.isDeadOrDying();
Return Type:
bool
// Player.isDescending as boolmyPlayer.isDescending
Return Type:
bool
Returns: true if the entity is descending.
// Player.isDescending() as bool;myPlayer.isDescending();
Return Type:
bool
// Player.isDiscrete as boolmyPlayer.isDiscrete
Return Type:
bool
Returns: true if the entity is being discrete.
// Player.isDiscrete() as bool;myPlayer.isDiscrete();
Return Type:
bool
// Player.isFakePlayer as boolmyPlayer.isFakePlayer
Return Type:
bool
// Player.isFallFlying as boolmyPlayer.isFallFlying
Return Type:
bool
Returns: True if the entity is flying with an elytra, false otherwise.
// Player.isFallFlying() as bool;myPlayer.isFallFlying();
Return Type:
bool
Returns: true if the entity is free to move in the given position.
// Player.isFree(x as double, y as double, z as double) as bool;myPlayer.isFree(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to check. y: double
Type: double
- The y position to check. z: double
Type: double
- The z position to check.
Return Type:
bool
// Player.isFullyFrozen as boolmyPlayer.isFullyFrozen
Return Type:
bool
Returns: true if the entity is fully frozen.
// Player.isFullyFrozen() as bool;myPlayer.isFullyFrozen();
Return Type:
bool
Returns: True if the entity is holding the item, false otherwise.
myPlayer.isHolding(myItem);
Parameters:
Return Type:
bool
Returns: True if the entity is holding the item, false otherwise.
myPlayer.isHolding(myPredicate);
Parameters:
Return Type:
bool
// Player.isHurt as boolmyPlayer.isHurt
Return Type:
bool
Returns: Whether the player is hurt.
// Player.isHurt() as bool;myPlayer.isHurt();
Return Type:
bool
// Player.isInLava as boolmyPlayer.isInLava
Return Type:
bool
Returns: true if the entity is in lava.
// Player.isInLava() as bool;myPlayer.isInLava();
Return Type:
bool
// Player.isInvertedHealAndHarm as boolmyPlayer.isInvertedHealAndHarm
Return Type:
bool
Returns: True if this entity is inverted for heal and harm, false otherwise.
// Player.isInvertedHealAndHarm() as bool;myPlayer.isInvertedHealAndHarm();
Return Type:
bool
// Player.isInvisible as boolmyPlayer.isInvisible
Return Type:
bool
Returns: true if the entity is invisible.
// Player.isInvisible() as bool;myPlayer.isInvisible();
Return Type:
bool
// Player.isInvulnerable as boolmyPlayer.isInvulnerable
Return Type:
bool
Returns: true if the entity is invulnerable.
// Player.isInvulnerable() as bool;myPlayer.isInvulnerable();
Return Type:
bool
DamageSource
.Returns: true if the entity is invulnerable to the damage source.
myPlayer.isInvulnerableTo(myDamageSource);
Parameters:
Return Type:
bool
// Player.isInWall as boolmyPlayer.isInWall
Return Type:
bool
Returns: true if the entity is in a wall.
// Player.isInWall() as bool;myPlayer.isInWall();
Return Type:
bool
// Player.isInWater as boolmyPlayer.isInWater
Return Type:
bool
Returns: true if the entity is in water.
// Player.isInWater() as bool;myPlayer.isInWater();
Return Type:
bool
// Player.isInWaterOrBubble as boolmyPlayer.isInWaterOrBubble
Return Type:
bool
Returns: true if the entity is in water or a bubble column.
// Player.isInWaterOrBubble() as bool;myPlayer.isInWaterOrBubble();
Return Type:
bool
// Player.isInWaterOrRain as boolmyPlayer.isInWaterOrRain
Return Type:
bool
Returns: true if the entity is in water or rain.
// Player.isInWaterOrRain() as bool;myPlayer.isInWaterOrRain();
Return Type:
bool
// Player.isInWaterRainOrBubble as boolmyPlayer.isInWaterRainOrBubble
Return Type:
bool
Returns: true if the entity is in water or rain or a bubble column.
// Player.isInWaterRainOrBubble() as bool;myPlayer.isInWaterRainOrBubble();
Return Type:
bool
// Player.isLocalPlayer as boolmyPlayer.isLocalPlayer
Return Type:
bool
Returns: Whether the player is the local player.
// Player.isLocalPlayer() as bool;myPlayer.isLocalPlayer();
Return Type:
bool
// Player.isNoGravity as boolmyPlayer.isNoGravity
Return Type:
bool
Returns: true if the entity has no gravity.
// Player.isNoGravity() as bool;myPlayer.isNoGravity();
Return Type:
bool
// Player.isOnFire as boolmyPlayer.isOnFire
Return Type:
bool
Returns: true if the entity is on fire.
// Player.isOnFire() as bool;myPlayer.isOnFire();
Return Type:
bool
// Player.isOnPortalCooldown as boolmyPlayer.isOnPortalCooldown
Return Type:
bool
Returns: true if the entity is on portal cooldown.
// Player.isOnPortalCooldown() as bool;myPlayer.isOnPortalCooldown();
Return Type:
bool
// Player.isPassenger as boolmyPlayer.isPassenger
Return Type:
bool
Returns: true if the entity is a passenger.
// Player.isPassenger() as bool;myPlayer.isPassenger();
Return Type:
bool
Returns: true if the entity is a passenger of the same vehicle.
myPlayer.isPassengerOfSameVehicle(myEntity);
Return Type:
bool
// Player.isPickable as boolmyPlayer.isPickable
Return Type:
bool
Returns: true if the entity is pickable.
// Player.isPickable() as bool;myPlayer.isPickable();
Return Type:
bool
// Player.isPushable as boolmyPlayer.isPushable
Return Type:
bool
Returns: true if the entity is pushable.
// Player.isPushable() as bool;myPlayer.isPushable();
Return Type:
bool
// Player.isPushedByFluid as boolmyPlayer.isPushedByFluid
Return Type:
bool
Returns: true if the entity is pushed by fluid.
// Player.isPushedByFluid() as bool;myPlayer.isPushedByFluid();
Return Type:
bool
// Player.isReducedDebugInfo as boolmyPlayer.isReducedDebugInfo
Return Type:
bool
Returns: Whether the player has reduced debug info.
// Player.isReducedDebugInfo() as bool;myPlayer.isReducedDebugInfo();
Return Type:
bool
// Player.isRemoved as boolmyPlayer.isRemoved
Return Type:
bool
Returns: Whether the entity has been removed.
// Player.isRemoved() as bool;myPlayer.isRemoved();
Return Type:
bool
// Player.isScoping as boolmyPlayer.isScoping
Return Type:
bool
Returns: Whether the player is scoping.
// Player.isScoping() as bool;myPlayer.isScoping();
Return Type:
bool
// Player.isSecondaryUseActive as boolmyPlayer.isSecondaryUseActive
Return Type:
bool
Returns: Whether the secondary use is active.
// Player.isSecondaryUseActive() as bool;myPlayer.isSecondaryUseActive();
Return Type:
bool
// Player.isSensitiveToWater as boolmyPlayer.isSensitiveToWater
Return Type:
bool
Returns: True if the entity is sensitive to water, false otherwise.
// Player.isSensitiveToWater() as bool;myPlayer.isSensitiveToWater();
Return Type:
bool
// Player.isShiftKeyDown as boolmyPlayer.isShiftKeyDown
Return Type:
bool
Returns: true if the shift key is down.
// Player.isShiftKeyDown() as bool;myPlayer.isShiftKeyDown();
Return Type:
bool
// Player.isSilent as boolmyPlayer.isSilent
Return Type:
bool
Returns: true if the entity is silent.
// Player.isSilent() as bool;myPlayer.isSilent();
Return Type:
bool
// Player.isSleeping as boolmyPlayer.isSleeping
Return Type:
bool
Returns: True if the entity is sleeping, false otherwise.
// Player.isSleeping() as bool;myPlayer.isSleeping();
Return Type:
bool
// Player.isSleepingLongEnough as boolmyPlayer.isSleepingLongEnough
Return Type:
bool
Returns: Whether the player has been sleeping long enough.
// Player.isSleepingLongEnough() as bool;myPlayer.isSleepingLongEnough();
Return Type:
bool
// Player.isSpectator as boolmyPlayer.isSpectator
Return Type:
bool
Returns: true if the entity is a spectator.
// Player.isSpectator() as bool;myPlayer.isSpectator();
Return Type:
bool
// Player.isSprinting as boolmyPlayer.isSprinting
Return Type:
bool
Returns: true if the entity is sprinting.
// Player.isSprinting() as bool;myPlayer.isSprinting();
Return Type:
bool
// Player.isSteppingCarefully as boolmyPlayer.isSteppingCarefully
Return Type:
bool
Returns: true if the entity is stepping carefully.
// Player.isSteppingCarefully() as bool;myPlayer.isSteppingCarefully();
Return Type:
bool
// Player.isSuppressingBounce as boolmyPlayer.isSuppressingBounce
Return Type:
bool
Returns: true if the entity is suppressing bounce.
// Player.isSuppressingBounce() as bool;myPlayer.isSuppressingBounce();
Return Type:
bool
// Player.isSuppressingSlidingDownLadder as boolmyPlayer.isSuppressingSlidingDownLadder
Return Type:
bool
Returns: True if the entity is suppressing sliding down a ladder, false otherwise.
// Player.isSuppressingSlidingDownLadder() as bool;myPlayer.isSuppressingSlidingDownLadder();
Return Type:
bool
// Player.isSwimming as boolmyPlayer.isSwimming
Return Type:
bool
Returns: true if the entity is swimming.
// Player.isSwimming() as bool;myPlayer.isSwimming();
Return Type:
bool
// Player.isUnderWater as boolmyPlayer.isUnderWater
Return Type:
bool
Returns: true if the entity is underwater.
// Player.isUnderWater() as bool;myPlayer.isUnderWater();
Return Type:
bool
// Player.isUsingItem as boolmyPlayer.isUsingItem
Return Type:
bool
Returns: True if the entity is using an item, false otherwise.
// Player.isUsingItem() as bool;myPlayer.isUsingItem();
Return Type:
bool
// Player.isVehicle as boolmyPlayer.isVehicle
Return Type:
bool
Returns: true if the entity is a vehicle.
// Player.isVehicle() as bool;myPlayer.isVehicle();
Return Type:
bool
// Player.isVisuallyCrawling as boolmyPlayer.isVisuallyCrawling
Return Type:
bool
Returns: true if the entity is visually crawling.
// Player.isVisuallyCrawling() as bool;myPlayer.isVisuallyCrawling();
Return Type:
bool
// Player.isVisuallySwimming as boolmyPlayer.isVisuallySwimming
Return Type:
bool
// Player.isVisuallySwimming as boolmyPlayer.isVisuallySwimming
Return Type:
bool
Returns: True if the entity is visually swimming, false otherwise.
// Player.isVisuallySwimming() as bool;myPlayer.isVisuallySwimming();
Return Type:
bool
Returns: true if the entity is visually swimming.
// Player.isVisuallySwimming() as bool;myPlayer.isVisuallySwimming();
Return Type:
bool
// Player.jumpBoostPower as doublemyPlayer.jumpBoostPower
Return Type:
double
Returns: The jump boost power.
// Player.jumpBoostPower() as double;myPlayer.jumpBoostPower();
Return Type:
double
// Player.jumpFromGround();myPlayer.jumpFromGround();
// Player.kill();myPlayer.kill();
// Player.killCredit as LivingEntitymyPlayer.killCredit
Return Type:
LivingEntity
Returns: The kill credit.
myPlayer.killCredit();
Return Type:
LivingEntity
// Player.knockback(x as double, y as double, z as double);myPlayer.knockback(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x coordinate to knock back to. y: double
Type: double
- The y coordinate to knock back to. z: double
Type: double
- The z coordinate to knock back to. // Player.lastDamageSource as DamageSourcemyPlayer.lastDamageSource
Return Type:
DamageSource
Returns: The last damage source.
myPlayer.lastDamageSource();
Return Type:
DamageSource
// Player.lastHurtByMob as LivingEntitymyPlayer.lastHurtByMob
Return Type:
LivingEntity
Returns: The last entity that hurt this entity.
myPlayer.lastHurtByMob();
Return Type:
LivingEntity
// Player.lastHurtByMobTimestamp as intmyPlayer.lastHurtByMobTimestamp
Return Type:
int
Returns: The timestamp when this entity was last hurt by a mob.
// Player.lastHurtByMobTimestamp() as int;myPlayer.lastHurtByMobTimestamp();
Return Type:
int
// Player.lastHurtMob as LivingEntitymyPlayer.lastHurtMob
Return Type:
LivingEntity
Returns: The last entity that this entity hurt.
myPlayer.lastHurtMob();
Return Type:
LivingEntity
// Player.lastHurtMobTimestamp as intmyPlayer.lastHurtMobTimestamp
Return Type:
int
Returns: The timestamp when this entity last hurt a mob.
// Player.lastHurtMobTimestamp() as int;myPlayer.lastHurtMobTimestamp();
Return Type:
int
// Player.lavaHurt();myPlayer.lavaHurt();
// Player.lootTable as ResourceLocationmyPlayer.lootTable
Return Type:
ResourceLocation
Returns: The loot table.
myPlayer.lootTable();
Return Type:
ResourceLocation
// Player.lootTableSeed as longmyPlayer.lootTableSeed
Return Type:
long
// Player.luck as floatmyPlayer.luck
Return Type:
float
Returns: The luck of the player.
// Player.luck() as float;myPlayer.luck();
Return Type:
float
// Player.mainArm as HumanoidArmmyPlayer.mainArm
Return Type:
HumanoidArm
Returns: The main arm of the player.
myPlayer.mainArm();
Return Type:
HumanoidArm
// Player.maxAirSupply as intmyPlayer.maxAirSupply
Return Type:
int
Returns: The maximum air supply of the entity.
// Player.maxAirSupply() as int;myPlayer.maxAirSupply();
Return Type:
int
// Player.maxFallDistance as intmyPlayer.maxFallDistance
Return Type:
int
Returns: The maximum fall distance of the entity.
// Player.maxFallDistance() as int;myPlayer.maxFallDistance();
Return Type:
int
// Player.maxHealth as floatmyPlayer.maxHealth
Return Type:
float
Returns: The maximum health.
// Player.maxHealth() as float;myPlayer.maxHealth();
Return Type:
float
// Player.mayBuild as boolmyPlayer.mayBuild
Return Type:
bool
Returns: Whether the player may build.
// Player.mayBuild() as bool;myPlayer.mayBuild();
Return Type:
bool
myPlayer.moveRelative(myFloat, myVec3);
// Player.moveTo(x as double, y as double, z as double);myPlayer.moveTo(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to move the entity to. y: double
Type: double
- The y position to move the entity to. z: double
Type: double
- The z position to move the entity to. myPlayer.moveTo(myBlockPos, myFloat, myFloat);
// Player.moveTo(x as double, y as double, z as double, yaw as float, pitch as float);myPlayer.moveTo(myDouble, myDouble, myDouble, myFloat, myFloat);
Parameters:
x: double
Type: double
- The x position to move the entity to. y: double
Type: double
- The y position to move the entity to. z: double
Type: double
- The z position to move the entity to. yaw: float
Type: float
- The yaw to move the entity to. pitch: float
Type: float
- The pitch to move the entity to. // Player.noActionTime as intmyPlayer.noActionTime
Return Type:
int
Returns: The time since this entity last performed an action.
// Player.noActionTime() as int;myPlayer.noActionTime();
Return Type:
int
// Player.onGround as boolmyPlayer.onGround
Return Type:
bool
// Player.percentFrozen as floatmyPlayer.percentFrozen
Return Type:
float
Returns: The percent the entity is frozen.
// Player.percentFrozen() as float;myPlayer.percentFrozen();
Return Type:
float
// Player.pistonPushReaction as PushReactionmyPlayer.pistonPushReaction
Return Type:
PushReaction
Returns: The piston push reaction of the entity.
myPlayer.pistonPushReaction();
Return Type:
PushReaction
// Player.playNotifySound(event as SoundEvent, source as SoundSource, volume as float, pitch as float);myPlayer.playNotifySound(mySoundEvent, mySoundSource, myFloat, myFloat);
Parameters:
volume: float
Type: float
- The volume of the sound. pitch: float
Type: float
- The pitch of the sound. myPlayer.playSound(mySoundEvent, myFloat, myFloat);
Parameters:
volume: float
Type: float
- The volume of the sound. pitch: float
Type: float
- The pitch of the sound. // Player.random as RandomSourcemyPlayer.random
Return Type:
RandomSource
Returns: The random source for the entity.
myPlayer.random();
Return Type:
RandomSource
// Player.registryName as ResourceLocationmyPlayer.registryName
Return Type:
ResourceLocation
Returns: The registry name of the entity.
myPlayer.registryName();
Return Type:
ResourceLocation
// Player.releaseUsingItem();myPlayer.releaseUsingItem();
Returns: True if all effects were removed, false otherwise.
// Player.removeAllEffects() as bool;myPlayer.removeAllEffects();
Return Type:
bool
Returns: The removed effect.
myPlayer.removeEffectNoUpdate(myMobEffect);
Return Type:
MobEffectInstance
Returns: true if the tag was removed.
// Player.removeTag(tagName as string) as bool;myPlayer.removeTag(myString);
Parameters:
tagName: string
Type: string
- The name of the tag to remove.
Return Type:
bool
// Player.removeVehicle();myPlayer.removeVehicle();
// Player.respawn();myPlayer.respawn();
// Player.scale as floatmyPlayer.scale
Return Type:
float
Returns: The scale of the entity.
// Player.scale() as float;myPlayer.scale();
Return Type:
float
// Player.score as intmyPlayer.score
Return Type:
int
Returns: The score of the player.
// Player.score() as int;myPlayer.score();
Return Type:
int
// Player.setAbsorptionAmount(absorption as float);myPlayer.setAbsorptionAmount(myFloat);
Parameters:
absorption: float
Type: float
- The absorption amount to set. // Player.setAirSupply(air as int);myPlayer.setAirSupply(myInt);
Parameters:
air: int
Type: int
- The new air supply of the entity. // Player.setArrowCount(count as int);myPlayer.setArrowCount(myInt);
Parameters:
count: int
Type: int
- The number of arrows to set. myPlayer.setAttachmentData<T>(myAttachmentType, myT);
Parameters:
type: AttachmentType<T>
Type: AttachmentType<T>
data: T
Type: T
Return Type:
T?
myPlayer.setAttachmentData<T>(mySupplier, myT);
Parameters:
type: Supplier<AttachmentType<T>>
Type: Supplier<AttachmentType<T>>
data: T
Type: T
Return Type:
T?
// Player.setCustomNameVisible(visible as bool);myPlayer.setCustomNameVisible(myBool);
Parameters:
visible: bool
Type: bool
- true if the custom name should be visible. // Player.setDeltaMovement(xDelta as double, yDelta as double, zDelta as double);myPlayer.setDeltaMovement(myDouble, myDouble, myDouble);
Parameters:
xDelta: double
Type: double
- The x delta movement to set. yDelta: double
Type: double
- The y delta movement to set. zDelta: double
Type: double
- The z delta movement to set. // Player.setDiscardFriction(discardFriction as bool);myPlayer.setDiscardFriction(myBool);
Parameters:
discardFriction: bool
Type: bool
- True if this entity should discard friction, false otherwise. // Player.setGlowingTag(glowing as bool);myPlayer.setGlowingTag(myBool);
Parameters:
glowing: bool
Type: bool
- true if the entity should be glowing. // Player.setHealth(health as float);myPlayer.setHealth(myFloat);
Parameters:
health: float
Type: float
- The health to set. // Player.setInvisible(invisible as bool);myPlayer.setInvisible(myBool);
Parameters:
invisible: bool
Type: bool
- true if the entity should be invisible. // Player.setInvulnerable(invulnerable as bool);myPlayer.setInvulnerable(myBool);
Parameters:
invulnerable: bool
Type: bool
- true if the entity should be invulnerable. // Player.setIsInPowderSnow(inPowderSnow as bool);myPlayer.setIsInPowderSnow(myBool);
Parameters:
inPowderSnow: bool
Type: bool
- Whether the entity is in powder snow. myPlayer.setItemInHand(myInteractionHand, myItemStack);
Parameters:
myPlayer.setItemSlot(myEquipmentSlot, myItemStack);
Parameters:
// Player.setJumping(jumping as bool);myPlayer.setJumping(myBool);
Parameters:
jumping: bool
Type: bool
- True if the entity should jump, false otherwise. myPlayer.setLastHurtByMob(myLivingEntity);
Parameters:
myPlayer.setMainArm(myHumanoidArm);
Parameters:
// Player.setNoActionTime(idleTime as int);myPlayer.setNoActionTime(myInt);
Parameters:
idleTime: int
Type: int
- The time since this entity last performed an action. // Player.setNoGravity(noGravity as bool);myPlayer.setNoGravity(myBool);
Parameters:
noGravity: bool
Type: bool
- The no gravity state to set the entity to. // Player.setOldPosAndRot();myPlayer.setOldPosAndRot();
// Player.setOnGround(onGround as bool);myPlayer.setOnGround(myBool);
Parameters:
onGround: bool
Type: bool
- The on ground state to set the entity to. // Player.setPortalCooldown();myPlayer.setPortalCooldown();
// Player.setPos(x as double, y as double, z as double);myPlayer.setPos(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to set the entity to. y: double
Type: double
- The y position to set the entity to. z: double
Type: double
- The z position to set the entity to. // Player.setPosRaw(x as double, y as double, z as double);myPlayer.setPosRaw(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x coordinate to set the position to. y: double
Type: double
- The y coordinate to set the position to. z: double
Type: double
- The z coordinate to set the position to. // Player.setReducedDebugInfo(reducedDebugInfo as bool);myPlayer.setReducedDebugInfo(myBool);
Parameters:
reducedDebugInfo: bool
Type: bool
- Whether the player has reduced debug info. myPlayer.setRemoved(myRemovalReason);
Parameters:
// Player.setScore(score as int);myPlayer.setScore(myInt);
Parameters:
score: int
Type: int
- The score to set. // Player.setShiftKeyDown(keyDown as bool);myPlayer.setShiftKeyDown(myBool);
Parameters:
keyDown: bool
Type: bool
- true if the shift key is down. // Player.setSilent(silent as bool);myPlayer.setSilent(myBool);
Parameters:
silent: bool
Type: bool
- The silent state to set the entity to. // Player.setSpeed(speed as float);myPlayer.setSpeed(myFloat);
Parameters:
speed: float
Type: float
- The movement speed to set. // Player.setSprinting(sprinting as bool);myPlayer.setSprinting(myBool);
Parameters:
sprinting: bool
Type: bool
- true if the entity should be sprinting. // Player.setStingerCount(count as int);myPlayer.setStingerCount(myInt);
Parameters:
count: int
Type: int
- The number of stingers to set. // Player.setSwimming(swimming as bool);myPlayer.setSwimming(myBool);
Parameters:
swimming: bool
Type: bool
- true if the entity should be swimming. // Player.setTicksFrozen(ticks as int);myPlayer.setTicksFrozen(myInt);
Parameters:
ticks: int
Type: int
- The new number of ticks the entity has been frozen. // Player.shouldBeSaved as boolmyPlayer.shouldBeSaved
Return Type:
bool
Returns: true if the entity should be saved.
// Player.shouldBeSaved() as bool;myPlayer.shouldBeSaved();
Return Type:
bool
// Player.shouldDiscardFriction as boolmyPlayer.shouldDiscardFriction
Return Type:
bool
Returns: True if this entity should discard friction, false otherwise.
// Player.shouldDiscardFriction() as bool;myPlayer.shouldDiscardFriction();
Return Type:
bool
// Player.shouldInformAdmins as boolmyPlayer.shouldInformAdmins
Return Type:
bool
Returns: True if the commands from this source should inform admins, false otherwise.
// Player.shouldInformAdmins() as bool;myPlayer.shouldInformAdmins();
Return Type:
bool
// Player.shouldShowName as boolmyPlayer.shouldShowName
Return Type:
bool
Returns: true if the entity should show its name.
// Player.shouldShowName() as bool;myPlayer.shouldShowName();
Return Type:
bool
// Player.showVehicleHealth as boolmyPlayer.showVehicleHealth
Return Type:
bool
Returns: true if the entity should show vehicle health.
// Player.showVehicleHealth() as bool;myPlayer.showVehicleHealth();
Return Type:
bool
// Player.sleepTimer as intmyPlayer.sleepTimer
Return Type:
int
Returns: The sleep timer of the player.
// Player.sleepTimer() as int;myPlayer.sleepTimer();
Return Type:
int
SoundSource
of the entity.// Player.soundSource as SoundSourcemyPlayer.soundSource
Return Type:
SoundSource
SoundSource
of the entity.Returns: The sound source of the entity.
myPlayer.soundSource();
Return Type:
SoundSource
// Player.speed as floatmyPlayer.speed
Return Type:
float
Returns: The movement speed of the entity.
// Player.speed() as float;myPlayer.speed();
Return Type:
float
Returns: true if the entity started riding.
myPlayer.startRiding(myEntity, myBool);
Parameters:
Return Type:
bool
myPlayer.startUsingItem(myInteractionHand);
Parameters:
// Player.stingerCount as intmyPlayer.stingerCount
Return Type:
int
Returns: The stinger count.
// Player.stingerCount() as int;myPlayer.stingerCount();
Return Type:
int
// Player.stopRiding();myPlayer.stopRiding();
// Player.stopSleeping();myPlayer.stopSleeping();
// Player.stopUsingItem();myPlayer.stopUsingItem();
// Player.stringUUID as stringmyPlayer.stringUUID
Return Type:
string
Returns: The UUID of the entity as a string.
// Player.stringUUID() as string;myPlayer.stringUUID();
Return Type:
string
// Player.sweepAttack();myPlayer.sweepAttack();
myPlayer.swing(myInteractionHand);
Parameters:
myPlayer.swing(myInteractionHand, myBool);
Parameters:
updateSelf: bool
Type: bool
- Whether to update the entity's self. These tags are arbitrary strings that can be attached to an entity. A single entity is limited to 1024.
// Player.tags as Set<string>myPlayer.tags
Return Type:
Set<string>
These tags are arbitrary strings that can be attached to an entity. A single entity is limited to 1024.
Returns: The tags of the entity.
// Player.tags() as Set<string>;myPlayer.tags();
Return Type:
Set<string>
// Player.teamColor as intmyPlayer.teamColor
Return Type:
int
Returns: The team color of the entity.
// Player.teamColor() as int;myPlayer.teamColor();
Return Type:
int
// Player.teleportTo(x as double, y as double, z as double);myPlayer.teleportTo(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x coordinate to teleport to. y: double
Type: double
- The y coordinate to teleport to. z: double
Type: double
- The z coordinate to teleport to. // Player.ticksFrozen as intmyPlayer.ticksFrozen
Return Type:
int
Returns: The number of ticks the entity has been frozen.
// Player.ticksFrozen() as int;myPlayer.ticksFrozen();
Return Type:
int
// Player.ticksRequiredToFreeze as intmyPlayer.ticksRequiredToFreeze
Return Type:
int
Returns: The number of ticks required to freeze the entity.
// Player.ticksRequiredToFreeze() as int;myPlayer.ticksRequiredToFreeze();
Return Type:
int
// Player.ticksUsingItem as intmyPlayer.ticksUsingItem
Return Type:
int
Returns: The ticks that the entity has been using an item.
// Player.ticksUsingItem() as int;myPlayer.ticksUsingItem();
Return Type:
int
// Player.turn(yaw as double, pitch as double);myPlayer.turn(myDouble, myDouble);
Parameters:
yaw: double
Type: double
- The yaw to turn the entity to. pitch: double
Type: double
- The pitch to turn the entity to. EntityType
of the entity.Returns: The EntityType
of the entity.
myPlayer.type();
Return Type:
EntityType<Entity>
// Player.unRide();myPlayer.unRide();
// Player.usedItemHand as InteractionHandmyPlayer.usedItemHand
Return Type:
InteractionHand
Returns: The hand that the entity is using an item with.
myPlayer.usedItemHand();
Return Type:
InteractionHand
// Player.useItemRemainingTicks as intmyPlayer.useItemRemainingTicks
Return Type:
int
Returns: The remaining ticks for the item that the entity is using.
// Player.useItemRemainingTicks() as int;myPlayer.useItemRemainingTicks();
Return Type:
int
// Player.uuid as UUIDmyPlayer.uuid
Return Type:
UUID
Returns: The UUID of the entity.
// Player.uuid() as UUID;myPlayer.uuid();
Return Type:
UUID
// Player.voicePitch as floatmyPlayer.voicePitch
Return Type:
float
Returns: The voice pitch.
// Player.voicePitch() as float;myPlayer.voicePitch();
Return Type:
float
// Player.x as doublemyPlayer.x
Return Type:
double
Returns: The x coordinate of the entity.
// Player.x() as double;myPlayer.x();
Return Type:
double
// Player.xpNeededForNextLevel as intmyPlayer.xpNeededForNextLevel
Return Type:
int
Returns: The amount of experience needed to reach the next level.
// Player.xpNeededForNextLevel() as int;myPlayer.xpNeededForNextLevel();
Return Type:
int
// Player.y as doublemyPlayer.y
Return Type:
double
Returns: The y coordinate of the entity.
// Player.y() as double;myPlayer.y();
Return Type:
double
// Player.z as doublemyPlayer.z
Return Type:
double
Returns: The z coordinate of the entity.
// Player.z() as double;myPlayer.z();
Return Type:
double