Entity Commands
Last updated
Last updated
"Multi-world" compatibility for the vanilla commands.
execute in <<NAME
OF
YOUR_WORLD>> run ...
Example, you want summon a Zombie in the world SsomarWorld:
execute in <<SsomarWorld>> run summon zombie 100 50 100
Example with a placeholder:
execute in <<%entity_world%>> run summon zombie 100 50 100
In addition of the following list of commands you can also use:
These commands can be used in the Player related commands OR Entity related commands.
Sorted by alphabetical order
Info: Allows you to add more commands in one command line. Will not work well with AROUND
and MOB_AROUND
.
Example:
Info: Targets players in a specific radius and makes them run commands
Command:
AROUND {distance} {command}
{distance}: To how far in radius the command will select players
{command}: The command that the targeted players will execute
Example:
This summons lightning at players in a 20 block radius
This gives players slowness in a 10 block radius
Damages nearby players by 20 player damage in a 7 block radius
The condition looks like AROUND <distance> CONDITIONS(<conditions>) <command>
Conditions works with placeholders but need to be %::_::% instead of %_%
For example %::player_health::%
To add MORE than 1 condition use "&&" between the conditions
Example:
Info: Sets the entity target to a specific UUID
Command settings:
entityUUID: The entity UUID of the target
Example:
Info: Sets whether this mob is aware of its surroundings. Unaware mobs will still move if pushed, attacked, etc. but will not move or perform any actions on their own. Unaware mobs may also have other unspecified behaviours disabled, such as drowning.
Command settings:
value: true or false
Example:
Info: Replaces the mob with an entity of another type. It will keep the current velocity of the current entity.
You can specify an EntityType
Or an entity definition example: {HasVisualFire:1b,id:"minecraft:bee"} (1.21.+)
Or a MythicMob ID
Command settings:
entity: The entity specification
Example:
Info: Drops an Executable Item in the entity's location
Command: DROPEXECUTABLEITEM {id} {quantity}
{id}: Item id of the ExecutableItem
{quantity}: The amount of the executable item that will drop
Example:
Info: Drops an Executable Block in the entity's location
Command: DROPEXECUTABLEBLOCK {id} {quantity}
{id}: Item id of the ExecutableBlock
{quantity}: The amount of the executable block that will drop
Example:
Info: Drops an item in the entity's location
Command: DROPITEM {material} {quantity}
{material}: The item type. Reference (MUST BE AT ALL CAPS)
{quantity}: The amount of the item that will drop
Example:
Info: Heals the entity with a specific amount, if not specified it will full heal the entity.
Command settings:
amount: The amount of the heal
Example:
Info: Kills the mob without the death animation
No command setting
Example:
Info: Targets entities in a specific radius and makes them run commands
Command: MOB_AROUND {distance} {mute or not} (command)
{distance}: To how far in radius the command will select entities
{mute or not}: (true or false) To notify the user of the item if it didn't manage to target any mobs.
Set to true to hide the message
You can BLACKLIST or WHITELIST entities adding one of these ones in anyplace of the command:
BLACKLIST(ZOMBIE,ARMOR_STAND)
WHITELIST(CHICKEN)
Example:
To use entity nbt on the WHITELIST/BLACKLIST field, you need to install NBT API plugin
It supports NBT Tags so you can add for example something like: ZOMBIE{IsBaby:1}
Info: Makes the player to ride the entity targeted.
No command setting
Example:
Info: Sets the AI state of the entity
Command settings:
value: true to enable the AI of the entity and false to disable.
Example:
Info: Sets the entity in it's "adult" state
No command setting
Example:
Example Situation:
If this command is executed on a baby chicken, it will turn into its adult form.
Info: Sets the entity in it's "baby" state
No command setting
Example:
Example Situation:
If this command is executed on a adult chicken, it will turn into its baby form.
Info: Forcefully sets the entity's name
Command settings:
name: the new name of the entity
Example:
Info: Shear the entity
No command setting
Example:
Info: Teleports the entity to the user of the item
No command setting
Example:
Info: Teleports the user of the item to the entity
No command setting
Example:
Info: Teleports the entity in a specific location
Command settings:
x: X-Coordinate
y: Y-Coordinate
z: Z-Coordinate
Example:
In addition of the following list of commands you can also use:
These commands can be used in the Player related commands OR Entity related commands.