Этот класс был добавлен модом с mod-id crafttweaker. Так что если вы хотите использовать эту функцию, вам нужно установить этот мод.

Импорт класса

Link to импорт-класса

Вам может потребоваться импортировать пакет, если вы столкнетесь с какими-либо проблемами (например, с заливкой массива), так что лучше быть в безопасности, чем извиняться и добавлять импорт.

ZenScript
Copy
crafttweaker.api.entity.player.MCPlayerEntity

increases exhaustion level by supplied amount

ZenScript
Copy
myMCPlayerEntity.addExhaustion(exhaustion as float);
ПараметрТипОписание
Параметр
exhaustion
Тип
float
Описание
Описание отсутствует

addExperienceLevel

Link to addexperiencelevel

Add experience levels to this player.

ZenScript
Copy
myMCPlayerEntity.addExperienceLevel(levels as int);
ПараметрТипОписание
Параметр
levels
Тип
int
Описание
Описание отсутствует

addItemStackToInventory

Link to additemstacktoinventory

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.addItemStackToInventory(p_191521_1_ as crafttweaker.api.item.IItemStack);
ПараметрТипОписание
Параметр
p_191521_1_
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует

Adds a value to a movement statistic field - like run, walk, swin or climb.

ZenScript
Copy
myMCPlayerEntity.addMovementStat(p_71000_1_ as double, p_71000_3_ as double, p_71000_5_ as double);
ПараметрТипОписание
Параметр
p_71000_1_
Тип
double
Описание
Описание отсутствует
Параметр
p_71000_3_
Тип
double
Описание
Описание отсутствует
Параметр
p_71000_5_
Тип
double
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.addPotionEffect(effectInstanceIn as crafttweaker.api.potion.MCPotionEffectInstance);
ПараметрТипОписание
Параметр
effectInstanceIn
Тип
crafttweaker.api.potion.MCPotionEffectInstance
Описание
Описание отсутствует

Add to player's score

ZenScript
Copy
myMCPlayerEntity.addScore(scoreIn as int);
ПараметрТипОписание
Параметр
scoreIn
Тип
int
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.addTag(tag as String);
ПараметрТипОписание
Параметр
tag
Тип
String
Описание
Описание отсутствует

Adds to the current velocity of the entity, and sets to true.

ZenScript
Copy
myMCPlayerEntity.addVelocity(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.allowLogging();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.attackable();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.attemptTeleport(p_213373_1_ as double, p_213373_3_ as double, p_213373_5_ as double, p_213373_7_ as boolean);
ПараметрТипОписание
Параметр
p_213373_1_
Тип
double
Описание
Описание отсутствует
Параметр
p_213373_3_
Тип
double
Описание
Описание отсутствует
Параметр
p_213373_5_
Тип
double
Описание
Описание отсутствует
Параметр
p_213373_7_
Тип
boolean
Описание
Описание отсутствует

Gets called every tick from main Entity class

ZenScript
Copy
myMCPlayerEntity.baseTick();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canAttackPlayer(other as crafttweaker.api.entity.player.MCPlayerEntity);
ПараметрТипОписание
Параметр
other
Тип
crafttweaker.api.entity.player.MCPlayerEntity
Описание
Описание отсутствует

canBeAttackedWithItem

Link to canbeattackedwithitem

Returns true if it's possible to attack this entity with an item.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canBeAttackedWithItem();

canBeCollidedWith

Link to canbecollidedwith

Returns true if other Entities should be prevented from moving through this Entity.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canBeCollidedWith();

canBeHitWithPotion

Link to canbehitwithpotion

Returns false if the entity is an armor stand. Returns true for all other entity living bases.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canBeHitWithPotion();

Returns true if this entity should push and be pushed by other entities when colliding.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canBePushed();

canBeRiddenInWater

Link to canberiddeninwater

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canBeRiddenInWater();

canBreatheUnderwater

Link to canbreatheunderwater

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canBreatheUnderwater();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canEat(ignoreHunger as boolean);
ПараметрТипОписание
Параметр
ignoreHunger
Тип
boolean
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canHarvestBlock(state as crafttweaker.api.block.MCBlockState);
ПараметрТипОписание
Параметр
state
Тип
crafttweaker.api.block.MCBlockState
Описание
Описание отсутствует

canPassengerSteer

Link to canpassengersteer

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canPassengerSteer();

Returns whether this player can modify the block at a certain location with the given stack.

The position being queried is {@code pos.offset(facing.getOpposite()))}. Returns: Whether this player may modify the queried location in the current world @see ItemStack#canPlaceOn(Block) @see ItemStack#canEditBlocks() @see PlayerCapabilities#allowEdit

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canPlayerEdit(pos as crafttweaker.api.util.BlockPos, facing as crafttweaker.api.util.Direction, stack as crafttweaker.api.item.IItemStack);
ПараметрТипОписание
Параметр
pos
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует
Параметр
facing
Тип
crafttweaker.api.util.Direction
Описание
Описание отсутствует
Параметр
stack
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует

Return whether this entity should be rendered as on fire.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canRenderOnFire();

canRiderInteract

Link to canriderinteract

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canRiderInteract();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canSwim();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canTrample(state as crafttweaker.api.block.MCBlockState, pos as crafttweaker.api.util.BlockPos, fallDistance as float);
ПараметрТипОписание
Параметр
state
Тип
crafttweaker.api.block.MCBlockState
Описание
Описание отсутствует
Параметр
pos
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует
Параметр
fallDistance
Тип
float
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canUpdate();
ZenScript
Copy
myMCPlayerEntity.canUpdate(value as boolean);
ПараметрТипОписание
Параметр
value
Тип
boolean
Описание
Описание отсутствует

canUseCommandBlock

Link to canusecommandblock

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.canUseCommandBlock();

clearActivePotions

Link to clearactivepotions

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.clearActivePotions();

clearBedPosition

Link to clearbedposition

ZenScript
Copy
myMCPlayerEntity.clearBedPosition();

set current crafting inventory back to the 2x2 square

ZenScript
Copy
myMCPlayerEntity.closeScreen();

curePotionEffects

Link to curepotioneffects

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.curePotionEffects(curativeItem as crafttweaker.api.item.IItemStack);
ПараметрТипОписание
Параметр
curativeItem
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.detach();
ZenScript
Copy
myMCPlayerEntity.disableShield(p_190777_1_ as boolean);
ПараметрТипОписание
Параметр
p_190777_1_
Тип
boolean
Описание
Описание отсутствует

doesEntityNotTriggerPressurePlate

Link to doesentitynottriggerpressureplate

Return whether this entity should NOT trigger a pressure plate or a tripwire.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.doesEntityNotTriggerPressurePlate();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.equals(p_equals_1_ as Object);
ПараметрТипОписание
Параметр
p_equals_1_
Тип
Object
Описание
Описание отсутствует

Removes fire from entity.

ZenScript
Copy
myMCPlayerEntity.extinguish();
ZenScript
Copy
myMCPlayerEntity.fall(distance as float, damageMultiplier as float);
ПараметрТипОписание
Параметр
distance
Тип
float
Описание
Описание отсутствует
Параметр
damageMultiplier
Тип
float
Описание
Описание отсутствует

Returns crafttweaker.api.item.IItemStack

ZenScript
Copy
myMCPlayerEntity.findAmmo(shootable as crafttweaker.api.item.IItemStack);
ПараметрТипОписание
Параметр
shootable
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.func_213300_bk();
ZenScript
Copy
myMCPlayerEntity.func_213312_b(p_213312_1_ as double, p_213312_3_ as double, p_213312_5_ as double);
ПараметрТипОписание
Параметр
p_213312_1_
Тип
double
Описание
Описание отсутствует
Параметр
p_213312_3_
Тип
double
Описание
Описание отсутствует
Параметр
p_213312_5_
Тип
double
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.func_213314_bj();

Returns float

ZenScript
Copy
myMCPlayerEntity.func_213343_cS();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.func_213365_e(itemstackIn as crafttweaker.api.item.IItemStack);
ПараметрТипОписание
Параметр
itemstackIn
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует

the movespeed used for the new AI system

Returns float

ZenScript
Copy
myMCPlayerEntity.getAIMoveSpeed();

getAbsorptionAmount

Link to getabsorptionamount

Returns the amount of health added by the Absorption effect.

Returns float

ZenScript
Copy
myMCPlayerEntity.getAbsorptionAmount();

getActiveItemStack

Link to getactiveitemstack

Returns crafttweaker.api.item.IItemStack

ZenScript
Copy
myMCPlayerEntity.getActiveItemStack();

getActivePotionEffect

Link to getactivepotioneffect

returns the PotionEffect for the supplied Potion if it is active, null otherwise.

Returns crafttweaker.api.potion.MCPotionEffectInstance

ZenScript
Copy
myMCPlayerEntity.getActivePotionEffect(potionIn as crafttweaker.api.potion.MCPotionEffect);
ПараметрТипОписание
Параметр
potionIn
Тип
crafttweaker.api.potion.MCPotionEffect
Описание
Описание отсутствует

getActivePotionEffects

Link to getactivepotioneffects

Returns Collection<crafttweaker.api.potion.MCPotionEffectInstance>

ZenScript
Copy
myMCPlayerEntity.getActivePotionEffects();

getAdjustedHorizontalFacing

Link to getadjustedhorizontalfacing

Gets the horizontal facing direction of this Entity, adjusted to take specially-treated entity types into account.

Returns crafttweaker.api.util.Direction

ZenScript
Copy
myMCPlayerEntity.getAdjustedHorizontalFacing();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getAir();

getAlwaysRenderNameTagForRender

Link to getalwaysrendernametagforrender

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.getAlwaysRenderNameTagForRender();

getArrowCountInEntity

Link to getarrowcountinentity

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getArrowCountInEntity();

gets the Direction for the camera if this entity is sleeping

Returns crafttweaker.api.util.Direction

ZenScript
Copy
myMCPlayerEntity.getBedDirection();

Returns crafttweaker.api.util.BlockPos

ZenScript
Copy
myMCPlayerEntity.getBedLocation();

Возвращает crafttweaker.api.block.MCBlockState

ZenScript
Copy
myMCPlayerEntity.getBlockState();

Gets how bright this entity is.

Returns float

ZenScript
Copy
myMCPlayerEntity.getBrightness();

getBrightnessForRender

Link to getbrightnessforrender

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getBrightnessForRender();

getCachedUniqueIdString

Link to getcacheduniqueidstring

Returns String

ZenScript
Copy
myMCPlayerEntity.getCachedUniqueIdString();

getClassification

Link to getclassification

Returns crafttweaker.api.entity.MCEntityClassification

ZenScript
Copy
myMCPlayerEntity.getClassification(forSpawnCount as boolean);
ПараметрТипОписание
Параметр
forSpawnCount
Тип
boolean
Описание
Описание отсутствует

getCollisionBorderSize

Link to getcollisionbordersize

Returns float

ZenScript
Copy
myMCPlayerEntity.getCollisionBorderSize();

getCooldownPeriod

Link to getcooldownperiod

Returns float

ZenScript
Copy
myMCPlayerEntity.getCooldownPeriod();

getCooledAttackStrength

Link to getcooledattackstrength

Returns the percentage of attack power available based on the cooldown (zero to one).

Returns float

ZenScript
Copy
myMCPlayerEntity.getCooledAttackStrength(adjustTicks as float);
ПараметрТипОписание
Параметр
adjustTicks
Тип
float
Описание
Описание отсутствует

Returns float

ZenScript
Copy
myMCPlayerEntity.getDigSpeed(state as crafttweaker.api.block.MCBlockState);
ПараметрТипОписание
Параметр
state
Тип
crafttweaker.api.block.MCBlockState
Описание
Описание отсутствует

Returns float

ZenScript
Copy
myMCPlayerEntity.getDigSpeed(arg0 as crafttweaker.api.block.MCBlockState, arg1 as crafttweaker.api.util.BlockPos);
ПараметрТипОписание
Параметр
arg0
Тип
crafttweaker.api.block.MCBlockState
Описание
Описание отсутствует
Параметр
arg1
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует

Returns double

ZenScript
Copy
myMCPlayerEntity.getDistanceSq(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getEntityId();

Returns String

ZenScript
Copy
myMCPlayerEntity.getEntityString();

Returns float

ZenScript
Copy
myMCPlayerEntity.getEyeHeight();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getFireTimer();

Returns float

ZenScript
Copy
myMCPlayerEntity.getHealth();

Returns float

ZenScript
Copy
myMCPlayerEntity.getHeight();

getHeldItemMainhand

Link to gethelditemmainhand

Returns crafttweaker.api.item.IItemStack

ZenScript
Copy
myMCPlayerEntity.getHeldItemMainhand();

getHeldItemOffhand

Link to gethelditemoffhand

Returns crafttweaker.api.item.IItemStack

ZenScript
Copy
myMCPlayerEntity.getHeldItemOffhand();

getHorizontalFacing

Link to gethorizontalfacing

Gets the horizontal facing direction of this Entity.

Returns crafttweaker.api.util.Direction

ZenScript
Copy
myMCPlayerEntity.getHorizontalFacing();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getIdleTime();

getItemInUseCount

Link to getiteminusecount

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getItemInUseCount();

getItemInUseMaxCount

Link to getiteminusemaxcount

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getItemInUseMaxCount();

getLastAttackedEntityTime

Link to getlastattackedentitytime

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getLastAttackedEntityTime();

Returns float

ZenScript
Copy
myMCPlayerEntity.getLuck();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getMaxAir();

getMaxFallHeight

Link to getmaxfallheight

The maximum height from where the entity is alowed to jump (used in pathfinder)

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getMaxFallHeight();

Returns float

ZenScript
Copy
myMCPlayerEntity.getMaxHealth();

getMaxInPortalTime

Link to getmaxinportaltime

Return the amount of time this entity should stay in a portal before being transported.

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getMaxInPortalTime();

getMountedYOffset

Link to getmountedyoffset

Returns the Y offset from the entity's position for any entity riding this one.

Returns double

ZenScript
Copy
myMCPlayerEntity.getMountedYOffset();

Gets the current pitch of the entity.

Returns float

ZenScript
Copy
myMCPlayerEntity.getPitch(partialTicks as float);
ПараметрТипОписание
Параметр
partialTicks
Тип
float
Описание
Описание отсутствует

getPortalCooldown

Link to getportalcooldown

Return the amount of cooldown before this entity can use a portal again.

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getPortalCooldown();

Get the position in the world. {@code null} is not allowed! If you are not an entity in the world, return the coordinates 0, 0, 0

Returns crafttweaker.api.util.BlockPos

ZenScript
Copy
myMCPlayerEntity.getPosition();

Returns float

ZenScript
Copy
myMCPlayerEntity.getRenderScale();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getRevengeTimer();

getRotationYawHead

Link to getrotationyawhead

Returns float

ZenScript
Copy
myMCPlayerEntity.getRotationYawHead();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getScore();

getScoreboardName

Link to getscoreboardname

Returns a String to use as this entity's name in the scoreboard/entity selector systems

Returns String

ZenScript
Copy
myMCPlayerEntity.getScoreboardName();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getSleepTimer();

getSubmergedHeight

Link to getsubmergedheight

Returns double

ZenScript
Copy
myMCPlayerEntity.getSubmergedHeight();

getSwimAnimation

Link to getswimanimation

Returns float

ZenScript
Copy
myMCPlayerEntity.getSwimAnimation(partialTicks as float);
ПараметрТипОписание
Параметр
partialTicks
Тип
float
Описание
Описание отсутствует

getSwingProgress

Link to getswingprogress

Gets the progression of the swing animation, ranges from 0.0 to 1.0.

Returns float

ZenScript
Copy
myMCPlayerEntity.getSwingProgress(partialTickTime as float);
ПараметрТипОписание
Параметр
partialTickTime
Тип
float
Описание
Описание отсутствует

Returns Set

ZenScript
Copy
myMCPlayerEntity.getTags();

getTeleportDirection

Link to getteleportdirection

Returns crafttweaker.api.util.Direction

ZenScript
Copy
myMCPlayerEntity.getTeleportDirection();

getTicksElytraFlying

Link to gettickselytraflying

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getTicksElytraFlying();

getTotalArmorValue

Link to gettotalarmorvalue

Returns the current armor value as determined by a call to InventoryPlayer.getTotalArmorValue

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getTotalArmorValue();

Returns float

ZenScript
Copy
myMCPlayerEntity.getWidth();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.getXPSeed();

Returns the Y Offset of this entity.

Returns double

ZenScript
Copy
myMCPlayerEntity.getYOffset();

Gets the current yaw of the entity

Returns float

ZenScript
Copy
myMCPlayerEntity.getYaw(partialTicks as float);
ПараметрТипОписание
Параметр
partialTicks
Тип
float
Описание
Описание отсутствует

giveExperiencePoints

Link to giveexperiencepoints

ZenScript
Copy
myMCPlayerEntity.giveExperiencePoints(p_195068_1_ as int);
ПараметрТипОписание
Параметр
p_195068_1_
Тип
int
Описание
Описание отсутствует

handleStatusUpdate

Link to handlestatusupdate

ZenScript
Copy
myMCPlayerEntity.handleStatusUpdate(id as byte);
ПараметрТипОписание
Параметр
id
Тип
byte
Описание
Описание отсутствует

handleWaterMovement

Link to handlewatermovement

Returns if this entity is in water and will end up adding the waters velocity to the entity

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.handleWaterMovement();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.hasCustomName();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.hasNoGravity();

hasPermissionLevel

Link to haspermissionlevel

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.hasPermissionLevel(p_211513_1_ as int);
ПараметрТипОписание
Параметр
p_211513_1_
Тип
int
Описание
Описание отсутствует

Whether the "reducedDebugInfo" option is active for this player.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.hasReducedDebug();

Возвращает int

ZenScript
Copy
myMCPlayerEntity.hashCode();

Heal living entity (param: amount of half-hearts)

ZenScript
Copy
myMCPlayerEntity.heal(healAmount as float);
ПараметрТипОписание
Параметр
healAmount
Тип
float
Описание
Описание отсутствует

ignoreItemEntityData

Link to ignoreitementitydata

Checks if players can use this entity to access operator (permission level 2) commands either directly or indirectly, such as give or setblock. A similar method exists for entities at {@link net.minecraft.tileentity.TileEntity#onlyOpsCanSetNbt()}.

For example, {@link net.minecraft.entity.item.EntityMinecartCommandBlock#ignoreItemEntityData() command block minecarts} and {@link net.minecraft.entity.item.EntityMinecartMobSpawner#ignoreItemEntityData() mob spawner minecarts} (spawning command block minecarts or drops) are considered accessible.

Returns:
Copy
true if this entity offers ways for unauthorized  players to use restricted commands

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.ignoreItemEntityData();

isActiveItemStackBlocking

Link to isactiveitemstackblocking

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isActiveItemStackBlocking();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isAddedToWorld();

Returns true if the entity has not been .

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isAlive();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isAllowEdit();

If at least 1 entity is riding this one

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isBeingRidden();

Returns true if the entity is on fire. Used by render to add the fire effect on rendering.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isBurning();

If Animal, checks if the age timer is negative

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isChild();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isCreative();

isCustomNameVisible

Link to iscustomnamevisible

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isCustomNameVisible();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isElytraFlying();

isEntityInsideOpaqueBlock

Link to isentityinsideopaqueblock

Checks if this entity is inside of an opaque block

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isEntityInsideOpaqueBlock();

Returns true if this entity is undead.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isEntityUndead();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isGlowing();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isHandActive();

isImmuneToExplosions

Link to isimmunetoexplosions

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isImmuneToExplosions();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isImmuneToFire();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInLava();

isInRangeToRender3d

Link to isinrangetorender3d

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInRangeToRender3d(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

isInRangeToRenderDist

Link to isinrangetorenderdist

Checks if the entity is in range to render.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInRangeToRenderDist(distance as double);
ПараметрТипОписание
Параметр
distance
Тип
double
Описание
Описание отсутствует

Checks if this entity is inside water (if inWater field is true as a result of handleWaterMovement() returning true)

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInWater();

isInWaterOrBubbleColumn

Link to isinwaterorbubblecolumn

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInWaterOrBubbleColumn();

isInWaterRainOrBubbleColumn

Link to isinwaterrainorbubblecolumn

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInWaterRainOrBubbleColumn();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInvisible();

isInvisibleToPlayer

Link to isinvisibletoplayer

Only used by renderer in EntityLivingBase subclasses. Determines if an entity is visible or not to a specific player, if the entity is normally invisible. For EntityLivingBase subclasses, returning false when invisible will render the entity semi-transparent.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInvisibleToPlayer(player as crafttweaker.api.entity.player.MCPlayerEntity);
ПараметрТипОписание
Параметр
player
Тип
crafttweaker.api.entity.player.MCPlayerEntity
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isInvulnerable();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isLiving();

Returns false if this Entity is a boss, true otherwise.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isNonBoss();

isOffsetPositionInLiquid

Link to isoffsetpositioninliquid

Checks if the offset position from the entity's current position is inside of a liquid.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isOffsetPositionInLiquid(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

Returns true if this entity should move as if it were on a ladder (either because it's actually on a ladder, or for AI reasons)

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isOnLadder();

isOnePlayerRiding

Link to isoneplayerriding

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isOnePlayerRiding();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isPassenger();

isPlayerFullyAsleep

Link to isplayerfullyasleep

Returns whether or not the player is asleep and the screen has fully faded.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isPlayerFullyAsleep();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isPotionActive(potionIn as crafttweaker.api.potion.MCPotionEffect);
ПараметрТипОписание
Параметр
potionIn
Тип
crafttweaker.api.potion.MCPotionEffect
Описание
Описание отсутствует

isPotionApplicable

Link to ispotionapplicable

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isPotionApplicable(potioneffectIn as crafttweaker.api.potion.MCPotionEffectInstance);
ПараметрТипОписание
Параметр
potioneffectIn
Тип
crafttweaker.api.potion.MCPotionEffectInstance
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isPushedByWater();

Returns whether the entity is in a server world

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isServerWorld();

Returns: True if this entity will not play sounds

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSilent();

Returns whether player is sleeping or not

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSleeping();

Returns if this entity is sneaking.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSneaking();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSpawnForced();

Returns true if the player is in spectator mode.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSpectator();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSpinAttacking();

Get if the Entity is sprinting.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSprinting();

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isSwimming();

returns true if this is an EntityPlayerSP, or the logged in player.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isUser();

Checks if this entity is either in water or on an open air block in rain (used in wolves).

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.isWet();

Causes this entity to do an upwards motion (jumping).

ZenScript
Copy
myMCPlayerEntity.jump();

Called frequently so the entity can update its state every tick as required. For example, zombies and skeletons use this to react to sunlight and start to burn.

ZenScript
Copy
myMCPlayerEntity.livingTick();

moveToBlockPosAndAngles

Link to movetoblockposandangles

ZenScript
Copy
myMCPlayerEntity.moveToBlockPosAndAngles(pos as crafttweaker.api.util.BlockPos, rotationYawIn as float, rotationPitchIn as float);
ПараметрТипОписание
Параметр
pos
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует
Параметр
rotationYawIn
Тип
float
Описание
Описание отсутствует
Параметр
rotationPitchIn
Тип
float
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.onAddedToWorld();

onCollideWithPlayer

Link to oncollidewithplayer

Called by a player entity when they collide with an entity

ZenScript
Copy
myMCPlayerEntity.onCollideWithPlayer(entityIn as crafttweaker.api.entity.player.MCPlayerEntity);
ПараметрТипОписание
Параметр
entityIn
Тип
crafttweaker.api.entity.player.MCPlayerEntity
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.onEnchant(enchantedItem as crafttweaker.api.item.IItemStack, cost as int);
ПараметрТипОписание
Параметр
enchantedItem
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует
Параметр
cost
Тип
int
Описание
Описание отсутствует

onEnterBubbleColumn

Link to onenterbubblecolumn

ZenScript
Copy
myMCPlayerEntity.onEnterBubbleColumn(downwards as boolean);
ПараметрТипОписание
Параметр
downwards
Тип
boolean
Описание
Описание отсутствует

onEnterBubbleColumnWithAirAbove

Link to onenterbubblecolumnwithairabove

ZenScript
Copy
myMCPlayerEntity.onEnterBubbleColumnWithAirAbove(downwards as boolean);
ПараметрТипОписание
Параметр
downwards
Тип
boolean
Описание
Описание отсутствует

Called by the /kill command.

ZenScript
Copy
myMCPlayerEntity.onKillCommand();

onRemovedFromWorld

Link to onremovedfromworld

ZenScript
Copy
myMCPlayerEntity.onRemovedFromWorld();

performHurtAnimation

Link to performhurtanimation

Setups the entity to do the hurt animation. Only used by packets in multiplayer.

ZenScript
Copy
myMCPlayerEntity.performHurtAnimation();

preparePlayerToSpawn

Link to prepareplayertospawn

Keeps moving the entity up so it isn't colliding with blocks and other requirements for this entity to be spawned (only actually used on players though its also on Entity)

ZenScript
Copy
myMCPlayerEntity.preparePlayerToSpawn();
ZenScript
Copy
myMCPlayerEntity.recalculateSize();
ZenScript
Copy
myMCPlayerEntity.remove();
ZenScript
Copy
myMCPlayerEntity.remove(keepData as boolean);
ПараметрТипОписание
Параметр
keepData
Тип
boolean
Описание
Описание отсутствует

removeActivePotionEffect

Link to removeactivepotioneffect

Returns crafttweaker.api.potion.MCPotionEffectInstance

ZenScript
Copy
myMCPlayerEntity.removeActivePotionEffect(arg0 as crafttweaker.api.potion.MCPotionEffect);
ПараметрТипОписание
Параметр
arg0
Тип
crafttweaker.api.potion.MCPotionEffect
Описание
Описание отсутствует

removePassengers

Link to removepassengers

Dismounts all entities riding this entity from this entity.

ZenScript
Copy
myMCPlayerEntity.removePassengers();

removePotionEffect

Link to removepotioneffect

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.removePotionEffect(effectIn as crafttweaker.api.potion.MCPotionEffect);
ПараметрТипОписание
Параметр
effectIn
Тип
crafttweaker.api.potion.MCPotionEffect
Описание
Описание отсутствует

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.removeTag(tag as String);
ПараметрТипОписание
Параметр
tag
Тип
String
Описание
Описание отсутствует

replaceItemInInventory

Link to replaceitemininventory

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.replaceItemInInventory(inventorySlot as int, itemStackIn as crafttweaker.api.item.IItemStack);
ПараметрТипОписание
Параметр
inventorySlot
Тип
int
Описание
Описание отсутствует
Параметр
itemStackIn
Тип
crafttweaker.api.item.IItemStack
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.resetActiveHand();
ZenScript
Copy
myMCPlayerEntity.resetCooldown();

resetPositionToBB

Link to resetpositiontobb

Resets the entity's position to the center (planar) and bottom (vertical) points of its bounding box.

ZenScript
Copy
myMCPlayerEntity.resetPositionToBB();
ZenScript
Copy
myMCPlayerEntity.respawnPlayer();
ZenScript
Copy
myMCPlayerEntity.revive();
ZenScript
Copy
myMCPlayerEntity.rotateTowards(yaw as double, pitch as double);
ПараметрТипОписание
Параметр
yaw
Тип
double
Описание
Описание отсутствует
Параметр
pitch
Тип
double
Описание
Описание отсутствует

Sends an END_COMBAT packet to the client

ZenScript
Copy
myMCPlayerEntity.sendEndCombat();

Sends an ENTER_COMBAT packet to the client

ZenScript
Copy
myMCPlayerEntity.sendEnterCombat();

sendPlayerAbilities

Link to sendplayerabilities

Sends the player's abilities to the server (if there is one).

ZenScript
Copy
myMCPlayerEntity.sendPlayerAbilities();

set the movespeed used for the new AI system

ZenScript
Copy
myMCPlayerEntity.setAIMoveSpeed(speedIn as float);
ПараметрТипОписание
Параметр
speedIn
Тип
float
Описание
Описание отсутствует

setAbsorptionAmount

Link to setabsorptionamount

ZenScript
Copy
myMCPlayerEntity.setAbsorptionAmount(amount as float);
ПараметрТипОписание
Параметр
amount
Тип
float
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setAir(air as int);
ПараметрТипОписание
Параметр
air
Тип
int
Описание
Описание отсутствует

setArrowCountInEntity

Link to setarrowcountinentity

ZenScript
Copy
myMCPlayerEntity.setArrowCountInEntity(count as int);
ПараметрТипОписание
Параметр
count
Тип
int
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setBedPosition(p_213369_1_ as crafttweaker.api.util.BlockPos);
ПараметрТипОписание
Параметр
p_213369_1_
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует

setCustomNameVisible

Link to setcustomnamevisible

ZenScript
Copy
myMCPlayerEntity.setCustomNameVisible(alwaysRenderNameTag as boolean);
ПараметрТипОписание
Параметр
alwaysRenderNameTag
Тип
boolean
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setEntityId(id as int);
ПараметрТипОписание
Параметр
id
Тип
int
Описание
Описание отсутствует

Sets entity to burn for x amount of seconds, cannot lower amount of existing fire.

ZenScript
Copy
myMCPlayerEntity.setFire(seconds as int);
ПараметрТипОписание
Параметр
seconds
Тип
int
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setFireTimer(p_223308_1_ as int);
ПараметрТипОписание
Параметр
p_223308_1_
Тип
int
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setGlowing(glowingIn as boolean);
ПараметрТипОписание
Параметр
glowingIn
Тип
boolean
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setHeadRotation(yaw as float, pitch as int);
ПараметрТипОписание
Параметр
yaw
Тип
float
Описание
Описание отсутствует
Параметр
pitch
Тип
int
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setHealth(health as float);
ПараметрТипОписание
Параметр
health
Тип
float
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setIdleTime(idleTimeIn as int);
ПараметрТипОписание
Параметр
idleTimeIn
Тип
int
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setInLava();
ZenScript
Copy
myMCPlayerEntity.setInvisible(invisible as boolean);
ПараметрТипОписание
Параметр
invisible
Тип
boolean
Описание
Описание отсутствует

Sets whether this Entity is invulnerable.

ZenScript
Copy
myMCPlayerEntity.setInvulnerable(isInvulnerable as boolean);
ПараметрТипОписание
Параметр
isInvulnerable
Тип
boolean
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setJumping(jumping as boolean);
ПараметрТипОписание
Параметр
jumping
Тип
boolean
Описание
Описание отсутствует

setLocationAndAngles

Link to setlocationandangles

Sets the location and Yaw/Pitch of an entity in the world

ZenScript
Copy
myMCPlayerEntity.setLocationAndAngles(x as double, y as double, z as double, yaw as float, pitch as float);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует
Параметр
yaw
Тип
float
Описание
Описание отсутствует
Параметр
pitch
Тип
float
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setMotion(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setNoGravity(noGravity as boolean);
ПараметрТипОписание
Параметр
noGravity
Тип
boolean
Описание
Описание отсутствует

Called when a record starts or stops playing. Used to make parrots start or stop partying.

ZenScript
Copy
myMCPlayerEntity.setPartying(pos as crafttweaker.api.util.BlockPos, isPartying as boolean);
ПараметрТипОписание
Параметр
pos
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует
Параметр
isPartying
Тип
boolean
Описание
Описание отсутствует

Marks the entity as being inside a portal, activating teleportation logic in onEntityUpdate() in the following tick(s).

ZenScript
Copy
myMCPlayerEntity.setPortal(pos as crafttweaker.api.util.BlockPos);
ПараметрТипОписание
Параметр
pos
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует

Sets the x,y,z of the entity from the given parameters. Also seems to set up a bounding box.

ZenScript
Copy
myMCPlayerEntity.setPosition(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

setPositionAndRotation

Link to setpositionandrotation

Sets position and rotation, clamping and wrapping params to valid values. Used by network code.

ZenScript
Copy
myMCPlayerEntity.setPositionAndRotation(x as double, y as double, z as double, yaw as float, pitch as float);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует
Параметр
yaw
Тип
float
Описание
Описание отсутствует
Параметр
pitch
Тип
float
Описание
Описание отсутствует

setPositionAndRotationDirect

Link to setpositionandrotationdirect

Sets a target for the client to interpolate towards over the next few ticks

ZenScript
Copy
myMCPlayerEntity.setPositionAndRotationDirect(x as double, y as double, z as double, yaw as float, pitch as float, posRotationIncrements as int, teleport as boolean);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует
Параметр
yaw
Тип
float
Описание
Описание отсутствует
Параметр
pitch
Тип
float
Описание
Описание отсутствует
Параметр
posRotationIncrements
Тип
int
Описание
Описание отсутствует
Параметр
teleport
Тип
boolean
Описание
Описание отсутствует

setPositionAndUpdate

Link to setpositionandupdate

Sets the position of the entity and updates the 'last' variables

ZenScript
Copy
myMCPlayerEntity.setPositionAndUpdate(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

setPositionNonDirty

Link to setpositionnondirty

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.setPositionNonDirty();
ZenScript
Copy
myMCPlayerEntity.setReducedDebug(reducedDebug as boolean);
ПараметрТипОписание
Параметр
reducedDebug
Тип
boolean
Описание
Описание отсутствует

setRenderYawOffset

Link to setrenderyawoffset

Set the render yaw offset

ZenScript
Copy
myMCPlayerEntity.setRenderYawOffset(offset as float);
ПараметрТипОписание
Параметр
offset
Тип
float
Описание
Описание отсутствует

setRotationYawHead

Link to setrotationyawhead

Sets the head's yaw rotation of the entity.

ZenScript
Copy
myMCPlayerEntity.setRotationYawHead(rotation as float);
ПараметрТипОписание
Параметр
rotation
Тип
float
Описание
Описание отсутствует

Set player's score

ZenScript
Copy
myMCPlayerEntity.setScore(scoreIn as int);
ПараметрТипОписание
Параметр
scoreIn
Тип
int
Описание
Описание отсутствует

When set to true the entity will not play sounds.

ZenScript
Copy
myMCPlayerEntity.setSilent(isSilent as boolean);
ПараметрТипОписание
Параметр
isSilent
Тип
boolean
Описание
Описание отсутствует

Sets the sneaking flag.

ZenScript
Copy
myMCPlayerEntity.setSneaking(sneaking as boolean);
ПараметрТипОписание
Параметр
sneaking
Тип
boolean
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setSpawnPoint(pos as crafttweaker.api.util.BlockPos, forced as boolean);
ПараметрТипОписание
Параметр
pos
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует
Параметр
forced
Тип
boolean
Описание
Описание отсутствует

Set sprinting switch for Entity.

ZenScript
Copy
myMCPlayerEntity.setSprinting(sprinting as boolean);
ПараметрТипОписание
Параметр
sprinting
Тип
boolean
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.setSwimming(p_204711_1_ as boolean);
ПараметрТипОписание
Параметр
p_204711_1_
Тип
boolean
Описание
Описание отсутствует

Updates the entity motion clientside, called by packets from the server

ZenScript
Copy
myMCPlayerEntity.setVelocity(x as double, y as double, z as double);
ПараметрТипОписание
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует

Checks if the player's health is not full and not zero.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.shouldHeal();

shouldReceiveErrors

Link to shouldreceiveerrors

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.shouldReceiveErrors();

shouldReceiveFeedback

Link to shouldreceivefeedback

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.shouldReceiveFeedback();

shouldRenderSneaking

Link to shouldrendersneaking

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.shouldRenderSneaking();

shouldRiderFaceForward

Link to shouldriderfaceforward

Returns true if the entity's rider (EntityPlayer) should face forward when mounted. currently only used in vanilla code by pigs.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.shouldRiderFaceForward(player as crafttweaker.api.entity.player.MCPlayerEntity);
ПараметрТипОписание
Параметр
player
Тип
crafttweaker.api.entity.player.MCPlayerEntity
Описание
The player who is riding the entity.

Возвращает boolean

ZenScript
Copy
myMCPlayerEntity.shouldRiderSit();

spawnRunningParticles

Link to spawnrunningparticles

Attempts to create sprinting particles if the entity is sprinting and not in water.

ZenScript
Copy
myMCPlayerEntity.spawnRunningParticles();

spawnSweepParticles

Link to spawnsweepparticles

ZenScript
Copy
myMCPlayerEntity.spawnSweepParticles();
ZenScript
Copy
myMCPlayerEntity.startSleeping(p_213342_1_ as crafttweaker.api.util.BlockPos);
ПараметрТипОписание
Параметр
p_213342_1_
Тип
crafttweaker.api.util.BlockPos
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.startSpinAttack(p_204803_1_ as int);
ПараметрТипОписание
Параметр
p_204803_1_
Тип
int
Описание
Описание отсутствует
ZenScript
Copy
myMCPlayerEntity.stopActiveHand();

Dismounts this entity from the entity it is riding.

ZenScript
Copy
myMCPlayerEntity.stopRiding();

teleportKeepLoaded

Link to teleportkeeploaded

ZenScript
Copy
myMCPlayerEntity.teleportKeepLoaded(p_223102_1_ as double, p_223102_3_ as double, p_223102_5_ as double);
ПараметрТипОписание
Параметр
p_223102_1_
Тип
double
Описание
Описание отсутствует
Параметр
p_223102_3_
Тип
double
Описание
Описание отсутствует
Параметр
p_223102_5_
Тип
double
Описание
Описание отсутствует

Called to update the entity's position/logic.

ZenScript
Copy
myMCPlayerEntity.tick();

Returns String

ZenScript
Copy
myMCPlayerEntity.toString();

Handles updating while riding another entity

ZenScript
Copy
myMCPlayerEntity.updateRidden();
ZenScript
Copy
myMCPlayerEntity.updateSwimming();
ZenScript
Copy
myMCPlayerEntity.wakeUp();

Wake up the player if they're sleeping.

ZenScript
Copy
myMCPlayerEntity.wakeUpPlayer(immediately as boolean, updateWorldFlag as boolean, setSpawn as boolean);
ПараметрТипОписание
Параметр
immediately
Тип
boolean
Описание
Описание отсутствует
Параметр
updateWorldFlag
Тип
boolean
Описание
Описание отсутствует
Параметр
setSpawn
Тип
boolean
Описание
Описание отсутствует

This method returns the cap amount of experience that the experience bar can hold. With each level, the experience cap on the player's experience bar is raised by 10.

Возвращает int

ZenScript
Copy
myMCPlayerEntity.xpBarCap();