Questa classe è stata aggiunta da una mod con ID crafttweaker. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.

Importare la Classe

Link to importare-la-classe

Potrebbe essere necessario importare il pacchetto, se si incontrano dei problemi (come castare un vettore), quindi meglio essere sicuri e aggiungere la direttiva di importazione.

ZenScript
Copy
crafttweaker.api.entity.player.MCPlayerEntity

increases exhaustion level by supplied amount

ZenScript
Copy
myMCPlayerEntity.addExhaustion(exhaustion as float);
ParametroTipoDescrizione
Parametro
exhaustion
Tipo
float
Descrizione
Nessuna descrizione fornita

addExperienceLevel

Link to addexperiencelevel

Add experience levels to this player.

ZenScript
Copy
myMCPlayerEntity.addExperienceLevel(levels as int);
ParametroTipoDescrizione
Parametro
levels
Tipo
int
Descrizione
Nessuna descrizione fornita

addItemStackToInventory

Link to additemstacktoinventory

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.addItemStackToInventory(p_191521_1_ as crafttweaker.api.item.IItemStack);
ParametroTipoDescrizione
Parametro
p_191521_1_
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
p_71000_1_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_71000_3_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_71000_5_
Tipo
double
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.addPotionEffect(effectInstanceIn as crafttweaker.api.potion.MCPotionEffectInstance);
ParametroTipoDescrizione
Parametro
effectInstanceIn
Tipo
crafttweaker.api.potion.MCPotionEffectInstance
Descrizione
Nessuna descrizione fornita

Add to player's score

ZenScript
Copy
myMCPlayerEntity.addScore(scoreIn as int);
ParametroTipoDescrizione
Parametro
scoreIn
Tipo
int
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.addTag(tag as String);
ParametroTipoDescrizione
Parametro
tag
Tipo
String
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.allowLogging();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.attackable();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.attemptTeleport(p_213373_1_ as double, p_213373_3_ as double, p_213373_5_ as double, p_213373_7_ as boolean);
ParametroTipoDescrizione
Parametro
p_213373_1_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_213373_3_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_213373_5_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_213373_7_
Tipo
boolean
Descrizione
Nessuna descrizione fornita

Gets called every tick from main Entity class

ZenScript
Copy
myMCPlayerEntity.baseTick();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canAttackPlayer(other as crafttweaker.api.entity.player.MCPlayerEntity);
ParametroTipoDescrizione
Parametro
other
Tipo
crafttweaker.api.entity.player.MCPlayerEntity
Descrizione
Nessuna descrizione fornita

canBeAttackedWithItem

Link to canbeattackedwithitem

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canBeAttackedWithItem();

canBeCollidedWith

Link to canbecollidedwith

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

Restituisce un booleano

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.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canBeHitWithPotion();

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canBePushed();

canBeRiddenInWater

Link to canberiddeninwater

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canBeRiddenInWater();

canBreatheUnderwater

Link to canbreatheunderwater

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canBreatheUnderwater();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canEat(ignoreHunger as boolean);
ParametroTipoDescrizione
Parametro
ignoreHunger
Tipo
boolean
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canHarvestBlock(state as crafttweaker.api.block.MCBlockState);
ParametroTipoDescrizione
Parametro
state
Tipo
crafttweaker.api.block.MCBlockState
Descrizione
Nessuna descrizione fornita

canPassengerSteer

Link to canpassengersteer

Restituisce un booleano

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canPlayerEdit(pos as crafttweaker.api.util.BlockPos, facing as crafttweaker.api.util.Direction, stack as crafttweaker.api.item.IItemStack);
ParametroTipoDescrizione
Parametro
pos
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita
Parametro
facing
Tipo
crafttweaker.api.util.Direction
Descrizione
Nessuna descrizione fornita
Parametro
stack
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita

Return whether this entity should be rendered as on fire.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canRenderOnFire();

canRiderInteract

Link to canriderinteract

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canRiderInteract();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canSwim();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canTrample(state as crafttweaker.api.block.MCBlockState, pos as crafttweaker.api.util.BlockPos, fallDistance as float);
ParametroTipoDescrizione
Parametro
state
Tipo
crafttweaker.api.block.MCBlockState
Descrizione
Nessuna descrizione fornita
Parametro
pos
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita
Parametro
fallDistance
Tipo
float
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canUpdate();
ZenScript
Copy
myMCPlayerEntity.canUpdate(value as boolean);
ParametroTipoDescrizione
Parametro
valore
Tipo
boolean
Descrizione
Nessuna descrizione fornita

canUseCommandBlock

Link to canusecommandblock

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.canUseCommandBlock();

clearActivePotions

Link to clearactivepotions

Restituisce un booleano

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.curePotionEffects(curativeItem as crafttweaker.api.item.IItemStack);
ParametroTipoDescrizione
Parametro
curativeItem
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.detach();
ZenScript
Copy
myMCPlayerEntity.disableShield(p_190777_1_ as boolean);
ParametroTipoDescrizione
Parametro
p_190777_1_
Tipo
boolean
Descrizione
Nessuna descrizione fornita

doesEntityNotTriggerPressurePlate

Link to doesentitynottriggerpressureplate

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.doesEntityNotTriggerPressurePlate();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.equals(p_equals_1_ as Object);
ParametroTipoDescrizione
Parametro
p_equals_1_
Tipo
Object
Descrizione
Nessuna descrizione fornita

Removes fire from entity.

ZenScript
Copy
myMCPlayerEntity.extinguish();
ZenScript
Copy
myMCPlayerEntity.fall(distance as float, damageMultiplier as float);
ParametroTipoDescrizione
Parametro
distance
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
damageMultiplier
Tipo
float
Descrizione
Nessuna descrizione fornita

Returns crafttweaker.api.item.IItemStack

ZenScript
Copy
myMCPlayerEntity.findAmmo(shootable as crafttweaker.api.item.IItemStack);
ParametroTipoDescrizione
Parametro
shootable
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

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);
ParametroTipoDescrizione
Parametro
p_213312_1_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_213312_3_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_213312_5_
Tipo
double
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.func_213314_bj();

Returns float

ZenScript
Copy
myMCPlayerEntity.func_213343_cS();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.func_213365_e(itemstackIn as crafttweaker.api.item.IItemStack);
ParametroTipoDescrizione
Parametro
itemstackIn
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
potionIn
Tipo
crafttweaker.api.potion.MCPotionEffect
Descrizione
Nessuna descrizione fornita

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();

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getAir();

getAlwaysRenderNameTagForRender

Link to getalwaysrendernametagforrender

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.getAlwaysRenderNameTagForRender();

getArrowCountInEntity

Link to getarrowcountinentity

Restituisce un intero

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();

Restituisce un crafttweaker.api.block.MCBlockState

ZenScript
Copy
myMCPlayerEntity.getBlockState();

Gets how bright this entity is.

Returns float

ZenScript
Copy
myMCPlayerEntity.getBrightness();

getBrightnessForRender

Link to getbrightnessforrender

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getBrightnessForRender();

getCachedUniqueIdString

Link to getcacheduniqueidstring

Ritorna una stringa

ZenScript
Copy
myMCPlayerEntity.getCachedUniqueIdString();

getClassification

Link to getclassification

Returns crafttweaker.api.entity.MCEntityClassification

ZenScript
Copy
myMCPlayerEntity.getClassification(forSpawnCount as boolean);
ParametroTipoDescrizione
Parametro
forSpawnCount
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
adjustTicks
Tipo
float
Descrizione
Nessuna descrizione fornita

Returns float

ZenScript
Copy
myMCPlayerEntity.getDigSpeed(state as crafttweaker.api.block.MCBlockState);
ParametroTipoDescrizione
Parametro
state
Tipo
crafttweaker.api.block.MCBlockState
Descrizione
Nessuna descrizione fornita

Returns float

ZenScript
Copy
myMCPlayerEntity.getDigSpeed(arg0 as crafttweaker.api.block.MCBlockState, arg1 as crafttweaker.api.util.BlockPos);
ParametroTipoDescrizione
Parametro
arg0
Tipo
crafttweaker.api.block.MCBlockState
Descrizione
Nessuna descrizione fornita
Parametro
arg1
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita

Returns double

ZenScript
Copy
myMCPlayerEntity.getDistanceSq(x as double, y as double, z as double);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getEntityId();

Ritorna una stringa

ZenScript
Copy
myMCPlayerEntity.getEntityString();

Returns float

ZenScript
Copy
myMCPlayerEntity.getEyeHeight();

Restituisce un intero

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();

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getIdleTime();

getItemInUseCount

Link to getiteminusecount

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getItemInUseCount();

getItemInUseMaxCount

Link to getiteminusemaxcount

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getItemInUseMaxCount();

getLastAttackedEntityTime

Link to getlastattackedentitytime

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getLastAttackedEntityTime();

Returns float

ZenScript
Copy
myMCPlayerEntity.getLuck();

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getMaxAir();

getMaxFallHeight

Link to getmaxfallheight

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

Restituisce un intero

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.

Restituisce un intero

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);
ParametroTipoDescrizione
Parametro
partialTicks
Tipo
float
Descrizione
Nessuna descrizione fornita

getPortalCooldown

Link to getportalcooldown

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

Restituisce un intero

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();

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getRevengeTimer();

getRotationYawHead

Link to getrotationyawhead

Returns float

ZenScript
Copy
myMCPlayerEntity.getRotationYawHead();

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getScore();

getScoreboardName

Link to getscoreboardname

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

Ritorna una stringa

ZenScript
Copy
myMCPlayerEntity.getScoreboardName();

Restituisce un intero

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);
ParametroTipoDescrizione
Parametro
partialTicks
Tipo
float
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
partialTickTime
Tipo
float
Descrizione
Nessuna descrizione fornita

Returns Set

ZenScript
Copy
myMCPlayerEntity.getTags();

getTeleportDirection

Link to getteleportdirection

Returns crafttweaker.api.util.Direction

ZenScript
Copy
myMCPlayerEntity.getTeleportDirection();

getTicksElytraFlying

Link to gettickselytraflying

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getTicksElytraFlying();

getTotalArmorValue

Link to gettotalarmorvalue

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

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.getTotalArmorValue();

Returns float

ZenScript
Copy
myMCPlayerEntity.getWidth();

Restituisce un intero

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);
ParametroTipoDescrizione
Parametro
partialTicks
Tipo
float
Descrizione
Nessuna descrizione fornita

giveExperiencePoints

Link to giveexperiencepoints

ZenScript
Copy
myMCPlayerEntity.giveExperiencePoints(p_195068_1_ as int);
ParametroTipoDescrizione
Parametro
p_195068_1_
Tipo
int
Descrizione
Nessuna descrizione fornita

handleStatusUpdate

Link to handlestatusupdate

ZenScript
Copy
myMCPlayerEntity.handleStatusUpdate(id as byte);
ParametroTipoDescrizione
Parametro
id
Tipo
byte
Descrizione
Nessuna descrizione fornita

handleWaterMovement

Link to handlewatermovement

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.handleWaterMovement();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.hasCustomName();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.hasNoGravity();

hasPermissionLevel

Link to haspermissionlevel

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.hasPermissionLevel(p_211513_1_ as int);
ParametroTipoDescrizione
Parametro
p_211513_1_
Tipo
int
Descrizione
Nessuna descrizione fornita

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.hasReducedDebug();

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.hashCode();

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

ZenScript
Copy
myMCPlayerEntity.heal(healAmount as float);
ParametroTipoDescrizione
Parametro
healAmount
Tipo
float
Descrizione
Nessuna descrizione fornita

ignoreItemEntityData

Link to ignoreitementitydata

Controlla se i giocatori possono sfruttare questa entità per accedere sia direttamente sia indirettamente a comandi operatore (livello di permesso 2), come per esempio give o 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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.ignoreItemEntityData();

isActiveItemStackBlocking

Link to isactiveitemstackblocking

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isActiveItemStackBlocking();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isAddedToWorld();

Returns true if the entity has not been .

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isAlive();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isAllowEdit();

If at least 1 entity is riding this one

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isBeingRidden();

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isBurning();

If Animal, checks if the age timer is negative

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isChild();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isCreative();

isCustomNameVisible

Link to iscustomnamevisible

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isCustomNameVisible();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isElytraFlying();

isEntityInsideOpaqueBlock

Link to isentityinsideopaqueblock

Checks if this entity is inside of an opaque block

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isEntityInsideOpaqueBlock();

Returns true if this entity is undead.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isEntityUndead();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isGlowing();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isHandActive();

isImmuneToExplosions

Link to isimmunetoexplosions

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isImmuneToExplosions();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isImmuneToFire();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInLava();

isInRangeToRender3d

Link to isinrangetorender3d

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInRangeToRender3d(x as double, y as double, z as double);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

isInRangeToRenderDist

Link to isinrangetorenderdist

Checks if the entity is in range to render.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInRangeToRenderDist(distance as double);
ParametroTipoDescrizione
Parametro
distance
Tipo
double
Descrizione
Nessuna descrizione fornita

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInWater();

isInWaterOrBubbleColumn

Link to isinwaterorbubblecolumn

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInWaterOrBubbleColumn();

isInWaterRainOrBubbleColumn

Link to isinwaterrainorbubblecolumn

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInWaterRainOrBubbleColumn();

Restituisce un booleano

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.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInvisibleToPlayer(player as crafttweaker.api.entity.player.MCPlayerEntity);
ParametroTipoDescrizione
Parametro
player
Tipo
crafttweaker.api.entity.player.MCPlayerEntity
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isInvulnerable();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isLiving();

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isNonBoss();

isOffsetPositionInLiquid

Link to isoffsetpositioninliquid

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isOffsetPositionInLiquid(x as double, y as double, z as double);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

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)

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isOnLadder();

isOnePlayerRiding

Link to isoneplayerriding

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isOnePlayerRiding();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isPassenger();

isPlayerFullyAsleep

Link to isplayerfullyasleep

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isPlayerFullyAsleep();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isPotionActive(potionIn as crafttweaker.api.potion.MCPotionEffect);
ParametroTipoDescrizione
Parametro
potionIn
Tipo
crafttweaker.api.potion.MCPotionEffect
Descrizione
Nessuna descrizione fornita

isPotionApplicable

Link to ispotionapplicable

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isPotionApplicable(potioneffectIn as crafttweaker.api.potion.MCPotionEffectInstance);
ParametroTipoDescrizione
Parametro
potioneffectIn
Tipo
crafttweaker.api.potion.MCPotionEffectInstance
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isPushedByWater();

Returns whether the entity is in a server world

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isServerWorld();

Returns: True if this entity will not play sounds

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSilent();

Returns whether player is sleeping or not

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSleeping();

Returns if this entity is sneaking.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSneaking();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSpawnForced();

Returns true if the player is in spectator mode.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSpectator();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSpinAttacking();

Get if the Entity is sprinting.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSprinting();

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isSwimming();

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.isUser();

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

Restituisce un booleano

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);
ParametroTipoDescrizione
Parametro
pos
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita
Parametro
rotationYawIn
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
rotationPitchIn
Tipo
float
Descrizione
Nessuna descrizione fornita
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);
ParametroTipoDescrizione
Parametro
entityIn
Tipo
crafttweaker.api.entity.player.MCPlayerEntity
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.onEnchant(enchantedItem as crafttweaker.api.item.IItemStack, cost as int);
ParametroTipoDescrizione
Parametro
enchantedItem
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita
Parametro
cost
Tipo
int
Descrizione
Nessuna descrizione fornita

onEnterBubbleColumn

Link to onenterbubblecolumn

ZenScript
Copy
myMCPlayerEntity.onEnterBubbleColumn(downwards as boolean);
ParametroTipoDescrizione
Parametro
downwards
Tipo
boolean
Descrizione
Nessuna descrizione fornita

onEnterBubbleColumnWithAirAbove

Link to onenterbubblecolumnwithairabove

ZenScript
Copy
myMCPlayerEntity.onEnterBubbleColumnWithAirAbove(downwards as boolean);
ParametroTipoDescrizione
Parametro
downwards
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
keepData
Tipo
boolean
Descrizione
Nessuna descrizione fornita

removeActivePotionEffect

Link to removeactivepotioneffect

Returns crafttweaker.api.potion.MCPotionEffectInstance

ZenScript
Copy
myMCPlayerEntity.removeActivePotionEffect(arg0 as crafttweaker.api.potion.MCPotionEffect);
ParametroTipoDescrizione
Parametro
arg0
Tipo
crafttweaker.api.potion.MCPotionEffect
Descrizione
Nessuna descrizione fornita

removePassengers

Link to removepassengers

Dismounts all entities riding this entity from this entity.

ZenScript
Copy
myMCPlayerEntity.removePassengers();

removePotionEffect

Link to removepotioneffect

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.removePotionEffect(effectIn as crafttweaker.api.potion.MCPotionEffect);
ParametroTipoDescrizione
Parametro
effectIn
Tipo
crafttweaker.api.potion.MCPotionEffect
Descrizione
Nessuna descrizione fornita

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.removeTag(tag as String);
ParametroTipoDescrizione
Parametro
tag
Tipo
String
Descrizione
Nessuna descrizione fornita

replaceItemInInventory

Link to replaceitemininventory

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.replaceItemInInventory(inventorySlot as int, itemStackIn as crafttweaker.api.item.IItemStack);
ParametroTipoDescrizione
Parametro
inventorySlot
Tipo
int
Descrizione
Nessuna descrizione fornita
Parametro
itemStackIn
Tipo
crafttweaker.api.item.IItemStack
Descrizione
Nessuna descrizione fornita
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);
ParametroTipoDescrizione
Parametro
yaw
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
pitch
Tipo
double
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
speedIn
Tipo
float
Descrizione
Nessuna descrizione fornita

setAbsorptionAmount

Link to setabsorptionamount

ZenScript
Copy
myMCPlayerEntity.setAbsorptionAmount(amount as float);
ParametroTipoDescrizione
Parametro
amount
Tipo
float
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setAir(air as int);
ParametroTipoDescrizione
Parametro
air
Tipo
int
Descrizione
Nessuna descrizione fornita

setArrowCountInEntity

Link to setarrowcountinentity

ZenScript
Copy
myMCPlayerEntity.setArrowCountInEntity(count as int);
ParametroTipoDescrizione
Parametro
count
Tipo
int
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setBedPosition(p_213369_1_ as crafttweaker.api.util.BlockPos);
ParametroTipoDescrizione
Parametro
p_213369_1_
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita

setCustomNameVisible

Link to setcustomnamevisible

ZenScript
Copy
myMCPlayerEntity.setCustomNameVisible(alwaysRenderNameTag as boolean);
ParametroTipoDescrizione
Parametro
alwaysRenderNameTag
Tipo
boolean
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setEntityId(id as int);
ParametroTipoDescrizione
Parametro
id
Tipo
int
Descrizione
Nessuna descrizione fornita

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

ZenScript
Copy
myMCPlayerEntity.setFire(seconds as int);
ParametroTipoDescrizione
Parametro
seconds
Tipo
int
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setFireTimer(p_223308_1_ as int);
ParametroTipoDescrizione
Parametro
p_223308_1_
Tipo
int
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setGlowing(glowingIn as boolean);
ParametroTipoDescrizione
Parametro
glowingIn
Tipo
boolean
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setHeadRotation(yaw as float, pitch as int);
ParametroTipoDescrizione
Parametro
yaw
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
pitch
Tipo
int
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setHealth(health as float);
ParametroTipoDescrizione
Parametro
health
Tipo
float
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setIdleTime(idleTimeIn as int);
ParametroTipoDescrizione
Parametro
idleTimeIn
Tipo
int
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setInLava();
ZenScript
Copy
myMCPlayerEntity.setInvisible(invisible as boolean);
ParametroTipoDescrizione
Parametro
invisible
Tipo
boolean
Descrizione
Nessuna descrizione fornita

Sets whether this Entity is invulnerable.

ZenScript
Copy
myMCPlayerEntity.setInvulnerable(isInvulnerable as boolean);
ParametroTipoDescrizione
Parametro
isInvulnerable
Tipo
boolean
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setJumping(jumping as boolean);
ParametroTipoDescrizione
Parametro
jumping
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
yaw
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
pitch
Tipo
float
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setMotion(x as double, y as double, z as double);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setNoGravity(noGravity as boolean);
ParametroTipoDescrizione
Parametro
noGravity
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
pos
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita
Parametro
isPartying
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
pos
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
yaw
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
pitch
Tipo
float
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
yaw
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
pitch
Tipo
float
Descrizione
Nessuna descrizione fornita
Parametro
posRotationIncrements
Tipo
int
Descrizione
Nessuna descrizione fornita
Parametro
teleport
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

setPositionNonDirty

Link to setpositionnondirty

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.setPositionNonDirty();
ZenScript
Copy
myMCPlayerEntity.setReducedDebug(reducedDebug as boolean);
ParametroTipoDescrizione
Parametro
reducedDebug
Tipo
boolean
Descrizione
Nessuna descrizione fornita

setRenderYawOffset

Link to setrenderyawoffset

Set the render yaw offset

ZenScript
Copy
myMCPlayerEntity.setRenderYawOffset(offset as float);
ParametroTipoDescrizione
Parametro
offset
Tipo
float
Descrizione
Nessuna descrizione fornita

setRotationYawHead

Link to setrotationyawhead

Sets the head's yaw rotation of the entity.

ZenScript
Copy
myMCPlayerEntity.setRotationYawHead(rotation as float);
ParametroTipoDescrizione
Parametro
rotation
Tipo
float
Descrizione
Nessuna descrizione fornita

Set player's score

ZenScript
Copy
myMCPlayerEntity.setScore(scoreIn as int);
ParametroTipoDescrizione
Parametro
scoreIn
Tipo
int
Descrizione
Nessuna descrizione fornita

When set to true the entity will not play sounds.

ZenScript
Copy
myMCPlayerEntity.setSilent(isSilent as boolean);
ParametroTipoDescrizione
Parametro
isSilent
Tipo
boolean
Descrizione
Nessuna descrizione fornita

Sets the sneaking flag.

ZenScript
Copy
myMCPlayerEntity.setSneaking(sneaking as boolean);
ParametroTipoDescrizione
Parametro
sneaking
Tipo
boolean
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setSpawnPoint(pos as crafttweaker.api.util.BlockPos, forced as boolean);
ParametroTipoDescrizione
Parametro
pos
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita
Parametro
forced
Tipo
boolean
Descrizione
Nessuna descrizione fornita

Set sprinting switch for Entity.

ZenScript
Copy
myMCPlayerEntity.setSprinting(sprinting as boolean);
ParametroTipoDescrizione
Parametro
sprinting
Tipo
boolean
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.setSwimming(p_204711_1_ as boolean);
ParametroTipoDescrizione
Parametro
p_204711_1_
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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

ZenScript
Copy
myMCPlayerEntity.setVelocity(x as double, y as double, z as double);
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
y
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
z
Tipo
double
Descrizione
Nessuna descrizione fornita

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

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.shouldHeal();

shouldReceiveErrors

Link to shouldreceiveerrors

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.shouldReceiveErrors();

shouldReceiveFeedback

Link to shouldreceivefeedback

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.shouldReceiveFeedback();

shouldRenderSneaking

Link to shouldrendersneaking

Restituisce un booleano

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.

Restituisce un booleano

ZenScript
Copy
myMCPlayerEntity.shouldRiderFaceForward(player as crafttweaker.api.entity.player.MCPlayerEntity);
ParametroTipoDescrizione
Parametro
player
Tipo
crafttweaker.api.entity.player.MCPlayerEntity
Descrizione
The player who is riding the entity.

Restituisce un booleano

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);
ParametroTipoDescrizione
Parametro
p_213342_1_
Tipo
crafttweaker.api.util.BlockPos
Descrizione
Nessuna descrizione fornita
ZenScript
Copy
myMCPlayerEntity.startSpinAttack(p_204803_1_ as int);
ParametroTipoDescrizione
Parametro
p_204803_1_
Tipo
int
Descrizione
Nessuna descrizione fornita
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);
ParametroTipoDescrizione
Parametro
p_223102_1_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_223102_3_
Tipo
double
Descrizione
Nessuna descrizione fornita
Parametro
p_223102_5_
Tipo
double
Descrizione
Nessuna descrizione fornita

Called to update the entity's position/logic.

ZenScript
Copy
myMCPlayerEntity.tick();

Ritorna una stringa

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);
ParametroTipoDescrizione
Parametro
immediately
Tipo
boolean
Descrizione
Nessuna descrizione fornita
Parametro
updateWorldFlag
Tipo
boolean
Descrizione
Nessuna descrizione fornita
Parametro
setSpawn
Tipo
boolean
Descrizione
Nessuna descrizione fornita

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.

Restituisce un intero

ZenScript
Copy
myMCPlayerEntity.xpBarCap();