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