Mc Command Center Update
The Sims 4 Mod by Deaderpool Created by Deaderpool at deaderpoolmc.tumblr.com. My goal with MC Command Center was to provide missing story progression to the Sims 4 as well as give the player the ability to fine-tune their playing experience to be more “fun” for their play-style.
Hey! So, I've had an error with the MC Command Center for about a month now (maybe a bit longer). It's basically just a non-stop error message popping up in the corner and it says 'A script error has been logged to the LastException.txt file located in the Sims 4 folder'. I'm not sure what the heck this means, but I took out MC Command Center from my Mods, and the error message stopped completely and my game ran fine, but then today I went and made sure I downloaded the UPDATED MCCC Mod and installed it, and the error popped up again. It's REALLY annoying and I don't understand what's causing this!
Any ideas/help? Thanks so much!
This feature is exclusive to Java Edition, Bedrock Edition and Education Edition. |
Commands are advanced features activated by typing certain strings of text.
- 1Usage
- 1.2Target selectors in Java Edition
- 2List and summary of commands
Usage[edit]
In the client, commands are entered via the chat window, which is displayed by pressing the T key (default) or / key. Using the / key will also enter the forward slash that commands require as a prefix, so it is a useful shortcut. The ↑ and ↓ key can be used to view previously entered text, including all previously executed commands. Pressing Tab ↹ while entering commands cycles through possible commands or arguments, and can be used to auto-enter the coordinates of the block looked at before entering chat.
Commands may also be entered in a multiplayer server's console, but are not preceded by a / when entered this way. A server admin running commands in this way is often referred to as 'ghosting'.
Commands in command blockscan be preceded by a slash, but it is not required. Commands in a command block usually also require an optional argument, like a player's username.
The majority of commands are only available in the following situations:
- In a multiplayer game, entered by an operator or command block.
- In other multiplayer games, entered by the player who opened a LAN game with cheats enabled, or is hosting their own multiplayer server
- In singleplayer, if cheats were enabled at world creation (via the 'More World Options...' button).
Some player commands are also available in singleplayer even when cheats are not enabled.
Note: In singleplayer worlds where cheats were not enabled at creation, they can be enabled on a temporary basis by opening the current game session to LAN play ( Esc → 'Open to LAN', then 'Allow Cheats' button and 'Start LAN World'). You do not actually need to be on a LAN or have others join. This is not permanent, but will allow the use of commands until you quit the world, and changes you make via commands (items spawned, etc.) will be saved with the world. You can do this each time you start playing the world again. Note that this will disable game pausing for the duration, so while open to LAN, you should get somewhere safe or reload your world before using the Game Menu. Remember that you can disable your LAN world by reloading the world.
Tilde and caret notation[edit]
Many commands allow relative coordinates to be specified using tildes (~
) or carets (^
). A number following a tilde or caret specifies an offset from a certain origin rather than a coordinate. The origin depends on the command. For example, in /tp
the offset is from the target's starting position. Other common offsets include from the position of the command's execution or from another coordinate specified by the command.
For the tilde, the offsets are in the directions of the world coordinate axes. For the caret, they are along axes originating in the center of the target's head and pointing to the left, forward, and upward, respectively, with respect to the head's tilt angle. For either, the sign of the offset specifies whether the offset is in the positive or negative direction along that axis. A single tilde or caret by itself is shorthand for ~0
or ^0
, meaning no offset in that direction.
For example, /tp 0 64 0
will teleport the user to the coordinate (0, 64, 0), while /tp ~3 ~ ~-3
will teleport the user to a position +3 blocks in the 'x' direction (i.e., east), keep their current height, and -3 blocks in the 'z' direction (i.e., north) and /tp ^ ^ ^3
will teleport the user to a position +3 forwards in the direction the player is looking.
Usually absolute coordinates can be mixed with relative coordinates. For example, /tp ~ 64 ~
will keep the user's 'x' and 'z' coordinates the same, but teleport them to absolute height of 64. Similarly, /tp ^-5 ^ ^
will teleport the player 5 blocks to the right, based on the tilt of their head.
Target selectors in Java Edition[edit]
This section needs updating. Description: Does not account for differences between Java 1.13 and Bedrock |
In most commands where a player may be specified as an argument, it is possible to 'target' one or more players satisfying certain conditions instead of specifying players by name. To target players by condition, choose a target selector variable and, optionally, one or more target selector arguments to modify the conditions to be satisfied.
For example, to change the game mode of all players on team Red to creative mode, instead of specifying them by name individually:
/gamemode creative @a[team=Red]
Target selector variables[edit]
Variable | Function |
---|---|
@p | nearest player |
@r | random player |
@a | all players |
@e | all entities |
@s | the entity executing the command |
@c | your agent |
@v | all agents |
A target selector variable identifies the broad category of targets to select. There are five variables:
@p
- Target the nearest player. When run by the console, the origin of selection will be at (0, 0, 0). If there are multiple nearest players, caused by them being precisely the same distance away, the player who most recently joined the server is selected.
- Target selector arguments may be used to reduce the set of players from which the nearest player will be selected. For example,
@p[team=Red]
will target the nearest player on team Red even if there are other players closer.
- The
c
[Bedrock Edition only] orlimit
[Java Edition only] target selector argument can be used to increase the number of nearest players targeted (for example,@p[c=3]
[Bedrock Edition only] or@p[limit=3]
[Java Edition only] will target the three nearest players).
@r
- Target a random player.
- Target selector arguments may be used to reduce the set of players from which a random player will be targeted. For example,
@r[team=Red]
will only target a random player from team Red.
- The
limit
target selector argument can be used to increase the number of random players targeted. For example,@r[limit=3]
will target three random players.
- The
type
argument is not allowed on@r
. To select a random entity, use@e[sort=random,limit=1]
instead.
@a
- Target all players, including dead players. No other selector will find dead players, except
@s
.
- Target selector arguments may be used to reduce the set of players targeted. For example,
@a[team=Red]
will only target players on team Red.
@e
- Target all entities (including players).
- Target selector arguments may be used to reduce the set of entities targeted. For example,
@e[type=cow]
will only target cows.
@s
Mc Command Center Update Download
- Target only one entity—the entity that executed the command, including dead players. If the executor was not an entity, for instance if the executor was a command block or a server console, this selector will find nothing.
- Target selector arguments may be used to specify whether the executor is actually eligible to be targeted. For example,
@s[type=cow,team=Red]
will only target the executor of the command if the executor was a cow on team Red.
@c
- Target your agent only.
limit
[Education Edition only]
- Target selector arguments may be used to target your agent. For example,
/tp @c 50 60 40
will teleport your agent only to specified location.
@v
- Target all agents.
limit
[Education Edition only]
- Target selector arguments may be used to target all agents. For example,
/remove @v
will remove all agents.
Target selector arguments[edit]
Selection by Position | |
---|---|
Argument(s) | Selection criteria |
x , y , z | coordinate |
distance [Java Edition only]r , rm [Bedrock Edition only] | distance |
dx , dy , dz | volume dimensions |
Selection by Scoreboard Values | |
Argument(s) | Selection criteria |
scores | scores |
tag | scoreboard tag |
team | team name |
Selection by Traits | |
Argument(s) | Selection criteria |
limit ,sort [Java Edition only]c [Bedrock Edition only] | limit |
level [Java Edition only]l ,lm [Bedrock Edition only] | experience level |
gamemode [Java Edition only]m [Bedrock Edition only] | game mode |
name | entity name |
x_rotation [Java Edition only]rx ,rxm [Bedrock Edition only] | vertical rotation |
y_rotation [Java Edition only]ry ,rym [Bedrock Edition only] | horizontal rotation |
type | entity type |
nbt [Java Edition only] | nbt |
advancements [Java Edition only] | advancements |
After a target selector, optional arguments can be used to modify the set of targets selected. When used with @a
or @e
, arguments narrow down the number of targets from the full list to a specific few. When used with @p
or @r
, arguments narrow the number of targets down from the full list to a smaller set from which the nearest or random player is selected. When used with @s
, the command user will only be targeted if all arguments pass, otherwise the command will fail.
Add argument-value pairs as a comma-separated list contained within square brackets after the target selector variable:
@<variable>[<argument>=<value>,<argument>=<value>,...]
.
Arguments and values are case-sensitive. Spaces are allowed around the brackets, equal signs, and commas, except in between the target variable and the first bracket. Commas must be used to separate argument-value pairs.
- Position arguments
[x=<value>,y=<value>,z=<value>]
- Define a position in the world for use with either the
distance
argument or the distance component arguments,dx
,dy
anddz
. Defining position alone has no use without these, so applying it (and only it) to@e
still selects all entities in the world. - The positional components are doubles, allowing for values like
+12.34
, and they are not center-corrected, meaningx=0
is no longer corrected tox=0.5
- tilde notation is available for selector argument coordinates[Bedrock Edition only].
- Selecting targets by distance
[<x>,<y>,<z>,distance=<value>]
- Filter target selection based on their Euclidean distances from some point. If the positional arguments are left undefined, radius/i is calculated relative to the postion of the command's execution. Only unsigned values are allowed.@e[distance=10]
— Target all entities exactly 10 blocks away.@e[distance=10..12]
— Target all entities more than 10 blocks but less than 12 blocks away (inclusive).@e[distance=5..]
— Target all entities at least 5 blocks away.@e[distance=..15]
— Target all entities at most 15 blocks away.
- Selecting targets by volume
[<x>,<y>,<z>,dx=<value>,dy=<value>,dz=<value>]
- Filter target selection based on their x-difference, y-difference, and z-difference from some point, as measured from the closest corner of the entities' hitboxes.dx
,dy
,dz
specify signed differences from the given coordinate. They do not specify a separate coordinate, nor do they extend in both the positive and negative directions.@e[x=1,dx=4,y=2,dy=5,z=3,dz=6]
— Select all entities whose hitbox collects with the block region (1~5, 2~7, 3~9) (or, mathematically speaking, the region which is {(x,y,z)∈R3 x∈[1.0,5.0),y∈[2.0,7.0),z∈[3.0,9.0)}).@e[x=1,y=2,z=3,dx=0,dy=0,dz=0]
— Select all entities whose hitbox contains the point (1,2,3).
- Selecting targets by scores
[scores={<objective>=<value>,...}]
- Filter target selection based on their scores in specified objectives.@e[scores={myscore=10}]
— Select all entities with a score in objective myscore of exactly 10.@e[scores={myscore=10..12}]
— Select all entities with a score in objective myscore of between 10 and 12 (inclusive).@e[scores={myscore=5..}]
— Select all entities with a score in objective myscore of 5 or greater.@e[scores={myscore=..15}]
— Select all entities with a score in objective myscore of 15 or less.
@e[scores={foo=10,bar=1..5}]
— Select all entities with a score in objective foo of exactly 10, and a score in objective bar of between 1 and 5 (inclusive).
- Selecting targets by team
[team=<teamName>]
- Filter target selection to those who are on a given team.[team=!<teamName>]
— Filter to those who are not on a given team.[team=]
— Filter to those who are teamless.[team=!]
— Filter to those who have some team.
- Limiting and sorting target selection
[limit=<value>]
- Limit the number of targets selected to be no higher than the given value.@p
and @r
, this argument defaults to 1. Applying the limit
argument to them may artificially increase the number of nearest or random targets selected. When applying this argument to @a
or @e
, this argument returns only a limited number of targets.[limit=<value>,sort=(nearest furthest random arbitrary)]
- Limit the number of targets, and specify selection priority.sort=nearest
— Sort by increasing distance. (Default for@p
)sort=furthest
— Sort by decreasing distance.sort=random
— Sort randomly. (Default for@r
)sort=arbitrary
— Do not sort. (Default for@e
,@a
)@a[limit=3,sort=nearest]
[Java Edition only] or@p[limit=3]
[Java Edition only] or@p[c=3]
[Bedrock Edition only] — Select the nearest 3 players.@a[limit=4,sort=furthest]
[Java Edition only] or@p[c=-3]
[Bedrock Edition only] — Select the furthest 4 players.@a[limit=2,sort=random]
[Java Edition only] or@r[c=2]
[Bedrock Edition only] — Select 4 players, chosen randomly.
- Selecting targets by experience level
[level=<value>]
- Filter target selection based on their experience levels. This naturally filters out all non-player targets.@a[level=10]
— Select all players who have exactly 10 levels.@a[level=10..20]
— Select all players who have between 10 and 20 levels (inclusive).@a[level=30..]
— Select all players who have at least 30 levels.@a[level=..29]
— Select all players who have at most 29 levels.
- Selecting targets by game mode
[gamemode=<gamemodeName>]
— Filter target selection to those who are in the specified game mode.[gamemode=!<gamemodeName>]
— Filter target selection to those who are not in the specified game mode.spectator
[Java Edition only], adventure
, creative
, and survival
.@a[gamemode=survival]
[Java Edition only] or@a[m=1]
[Bedrock Edition only] or@a[m=s]
[Bedrock Edition only] — Select all players who are in Survival mode.@a[gamemode=!spectator]
[Java Edition only] — Select all players who are not in Spectator mode.
- Selecting targets by name
[name=<givenName>]
— Filter target selection to all those with a given name.[name=!<givenName>]
— Filter target selection to all those without a given name.@e[name!=Steve]
- Select all entities that are not named 'Steve'.
- Selecting targets by vertical rotation
[x_rotation=<value>]
— Filter target selection based on their pitch, or more specifically their declination from the horizon, measured in degrees. Values range from -90 (straight up) to 0 (at the horizon) to +90 (straight down).@e[x_rotation=0]
— Select all entities that are looking directly at the horizon.@e[x_rotation=30..60]
— Select all entities that are looking between 30° and 60° (inclusive) below the horizon.@e[x_rotation=45..]
— Select all entities that are looking 45° or more below the horizon.@e[x_rotation=..0]
— Select all entities that are looking at or above the horizon.
- Selecting targets by horizontal rotation
[y_rotation=<value>]
— Filter target selection based on their rotation in the horizontal XZ-plane, measured clockwise in degrees from due south (or the positive Z direction). Values vary from -180 (facing due north) to -90 (facing due east) to 0 (facing due south) to +90 (facing due west) to +180 (facing due north again).@a[y_rotation=0]
— Select all entities that are facing due south.@a[y_rotation=45]
— Select all entities that are facing 45°west of south.@a[y_rotation=96]
— Select all entities that are facing 6°north of west.@a[y_rotation=-90..0]
— Select all entities that are facing in the 90° between due east and due south (inclusive).@a[y_rotation=-90..90]
— Select all entities that are facing between due east and due west (inclusive), through south.@a[y_rotation=0..]
— Select all entities that are not facing at all east.
- Selecting targets by type
[type=<entityType>]
— Filter target selection to those of a specific entity type.[type=!<entityType>]
— Filter target selection to those not of a specific entity type.minecraft:
namespace. (For example, minecart:creeper
for creepers, minecart
for regular minecarts, tnt
for primed TNT, etc.) Entity IDs or tags are case-sensitive.@r
parameter, this argument defaults to the type player
. Defining a type for this parameter can filter the random selection to only entities.@e[type=skeleton]
— Select all skeletons.@e[type=!chicken,type=!cow]
— Select all entities except chickens and cows.@e[type=chicken,type=cow]
- Not applicable; select all entities that are simultaneously a chicken and a cow.@e[type=#skeletons]
— Select all skeletons, wither skeletons, and strays.
- Selecting targets by data tag
[tag=<string>]
— Filter target selection to those that have at least one tag of the given name.[tag=!<string>]
— Filter to those that have no tags of the given name.[tag=]
— Filter to those that have exactly zero tags.[tag=!]
— Filter to those that have at least one tag.@e[tag=a,tag=b,tag=!c]
— Select all entities that have tags a and b but not tag c.@r[tag=a]
— Select one random player who has tag a.
- Selecting targets by NBT[Java Edition only]
[nbt=<compoundTag>]
— Select all targets that have the specified NBT. The NBT is written in its command definition.@a[nbt={OnGround:true}]
— Select all players on the ground.@e[type=sheep,nbt={Color:0b}]
— Select all sheep that are dyed white.@e[type=item,nbt={Item:{id:'minecraft:slime_ball'}}]
— Selects all slime ball drops.@e[nbt={Tags:[a,b]}]
is the same as@e[tag=a,tag=b]
. The latter is simpler and reduces CPU load.
- Hence
@e[type=item,nbt={Item:{id:slime_ball}}]
cannot find any drop as the id field always contains a namespaced ID-converted string.
- Selecting targets by advancements[Java Edition only]
This section needs expanding |
/advancement test
. The argument name is the advancement id (namespace can be left out when namespaced minecraft
). The value is true, false or so.@a[advancements={story/form_obsidian=true}]
— Selects players who have achieved the advancement minecraft:story/from_obsidian.@a[advancements={story/form_obsidian=false}]
— Selects players who haven't achieved the advancement minecraft:story/from_obsidian.@a[advancements={story/obtain_armor={iron_helmet=true}}]
— Selects players who had armored with iron helmet. The selected players needn't be wearing iron helmet when selected, and needn't have achieved the advancement minecraft:story/obtain_armor.@a[advancements={story/follow_ender_eye=true}]
is the same as@a[advancements={story/follow_ender_eye={in_stronghold=true}}]
.
Data tags[edit]
A data tag is a tree-shaped data structure which can be described starting with attribute-value pairs enclosed in curly braces. One common usage of data tags in Java Edition is in commands, used to specify complex data for any entity.
A data tag consists of zero or more attribute-value pairs delimited by commas and enclosed in curly braces. Each attribute-value pair consists of an attribute name and the attribute's value, separated by a colon. Some values, however, may themselves contain attribute-value pairs, allowing a data tag to describe a hierarchical data structure.
- Example:
{name1:123,name2:'sometext',name3:{subname1:456,subname2:789}}
The data structures that data tags describe are the same ones used in Minecraft's save files. These data structures are described in other articles and commands expect data tags to use the same attribute names (which are case-sensitive):
Objects | Examples |
---|---|
Block entities | chests, furnaces, command blocks, mob spawners, signs, etc. |
Items | items in inventories (includes specifications for enchantments, lore, custom names, etc.) |
Item entities | items on the ground |
Mobs | creepers, cows, villagers, etc. |
Projectiles | arrows, fireballs, thrown potions, etc. |
Vehicles | boats, minecarts, etc. |
Dynamic tiles | primed TNT, falling sand/gravel/anvils |
Other entities | firework rockets, paintings, and item frames |
The defined data structures also expect the values to be of the correct type.
Type | Description |
---|---|
Byte | A signed 8-bit integer, ranging from -128 to 127 (inclusive). |
Short | A signed 16-bit integer, ranging from -32,768 to 32,767 (inclusive). |
Int | A signed 32-bit integer, ranging from -2,147,483,648 and 2,147,483,647 (inclusive). |
Long | A signed 64-bit integer, ranging from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 (inclusive). |
Float Double | Float: A 32-bit, single-precision floating-point number, ranging from -3.4E+38 to +3.4E+38.
Double: A 64-bit, double-precision floating-point, ranging from -1.7E+308 to +1.7E+308.
See IEEE floating point for details. |
String | A sequence of characters, enclosed in quotes. For strings without commas, brackets, braces or spaces, quote enclosure is optional. Nested quotes can be included within a string by escaping the character with the ' escape sequence.
|
List | An ordered list of tags, enclosed in square brackets and delimited by commas. The tags must be of the same type, determined by the first tag in the list.
|
Compound | An ordered list of attribute-value pairs, enclosed in curly braces and delimited by commas.
Each tag may be of any type. |
Byte Array | B; followed by an ordered list of 8-bit integers, delimited by commas. Tag is enclosed in square brackets.
|
Int Array | I; followed by an ordered list of 32-bit integers, delimited by commas. Tag is enclosed in square brackets.
|
Long Array | L; followed by an ordered list of 64-bit integers, delimited by commas. Tag is enclosed in square brackets.
|
Boolean | A value, expressed as 'true' or 'false'. This is only seen in JSON formatting, as a Byte tag is usually used in NBT data to determine a boolean value as 0 (for false) and 1 (for true).
|
Some commands may require that a number's type be specified by adding a letter (B, S, L, F, D) to the end of the value. For example, 3s
for a short, 3.2f
for a float, etc. (This doesn't work with I for int.) The letter can be uppercase or lowercase. When no letter is used and Minecraft can't tell the type from context, it assumes double if there's a decimal point, int if there's no decimal point and the size fits within 32 bits, or string if neither is true. A square-bracketed literal is assumed to be a list unless an identifier is used: [I;1,2,3]
for an int array and [L;1L,2L,3L]
for a long array.
When commands such as /testfor
, /testforblock
, and /clear
are used to match data tags, they only check for the presence of the provided tags in the target entity/block/item. This means that the entity/block/item may have additional tags and will still match. This is true even for lists and arrays: the order of a list is not acknowledged, and as long as every requested element is in the list, it will match even if there are additional elements.
The format used for data tags is a lenient form of JSON.
Raw JSON text[edit]
The /tellraw
and /title
commands use strict JSON syntax.
Scores and target selectors are evaluated for a Sign when it is placed or edited and for a Written Book when it is 'resolved' (opened for the first time after signing). They won't update after that, and they won't work if edited onto an existing sign with an NBT editor, or onto a book that's already marked resolved. There's no way to wrap text onto the next line of a sign or the next page of a book during resolution; instead, the extra text will simply disappear.
The format of raw JSON text is a JSON string, a JSON array, or a JSON Object which supports the following (mostly optional) elements:
- A string representing raw text to display directly in chat. Same as only having a text tag in the base object.
- Same as having all elements except the first in this array appended to the end of the extra array of the first chat component in this array. Each element repeats this raw JSON text structure.
- The base chat component object.
- text: A string representing raw text to display directly in chat. Note that selectors such as '@a' and '@p' are not translated into player names; use selector instead. Can use escape characters, such as
n
for newline (enter),t
for tab, etc. - translate: The translation identifier of text to be displayed using the player's selected language. This identifier is the same as the identifiers found in lang files from assets or resource packs. Ignored when text exist in the root object.
- score: A player's score in an objective. Displays nothing if the player is not tracked in the given objective. Ignored when any of the previous fields exist in the root object.
- name: The name of the player whose score should be displayed. Selectors (such as @p) can be used, in addition to 'fake' player names created by the scoreboard system. In addition, if the name is '*', it will show the reader's own score (for example,
/tellraw @a {'score':{'name':'*','objective':'obj'}}
will show every online player their own score in the 'obj' objective). - objective: The internal name of the objective to display the player's score in.
- value: Optional. If present, this value is used regardless of what the score would have been.
- name: The name of the player whose score should be displayed. Selectors (such as @p) can be used, in addition to 'fake' player names created by the scoreboard system. In addition, if the name is '*', it will show the reader's own score (for example,
- selector: A string containing a selector (@p,@a,@r,@e or @s) and, optionally, selector arguments. Unlike text, the selector will be translated into the correct player/entity names. If more than one player/entity is detected by the selector, it will be displayed in a form such as 'Name1 and Name2' or 'Name1, Name2, Name3, and Name4'. Ignored when any of the previous fields exist in the root object. Clicking a player's name inserted into a /tellraw command this way will suggest a command to whisper to that player. Shift-clicking a player's name will insert that name into chat. Shift-clicking a non-player entity's name will insert its UUID into chat.
- keybind: A string that can be used to display the key needed to preform a certain action. An example is
key.inventory
which will always display 'E' unless the player has set a different key for opening their inventory. Ignored when any of the previous fields exist in the root object. - nbt: A string indicating the NBT path used for looking up NBT values from an entity or a block entity. Ignored when any of the previous fields exist in the root object.
- with: A list of chat component arguments and/or string arguments to be used by translate. Useless otherwise.
- The arguments are text corresponding to the arguments used by the translation string in the current language, in order (for example, the first list element corresponds to '%1$s' in a translation string). Argument structure repeats this raw JSON text structure.
- interpret: A boolean to indicate whether the game should interpret the SNBT value at the path indicated by nbt as a raw JSON text (according to this raw JSON text structure). Useless otherwise.
- block: A string specifying the coordinates of the block entity from which the NBT value is obtained. The coordinates can be absolute or relative. Useless if nbt is absent.
- entity: A string specifying the target selector for the entity from with the NBT value is obtained. Useless if nbt is absent.
- extra: A list of additional objects, sharing the same format as the base object.
- A list element whose structure repeats this raw JSON text structure. Note that all properties of this object are inherited by children except for text, extra, translate, with, and score. This means that children will retain the same formatting and events as this object unless they explicitly override them.
- color: The color to render this text in. Valid values are 'black', 'dark_blue', 'dark_green', 'dark_aqua', 'dark_red', 'dark_purple', 'gold', 'gray', 'dark_gray', 'blue', 'green', 'aqua', 'red', 'light_purple', 'yellow', 'white', and 'reset' (cancels out the effects of colors used by parent objects). Technically, 'bold', 'italic', 'underlined', 'strikethrough', and 'obfuscated' are also accepted, but it may be better practice to use the tags below for such formats.
- bold: Boolean (true/false) - whether to render text in bold. Defaults to false.
- italic: Boolean (true/false) - whether to render text in italics. Defaults to false.
- underlined: Boolean (true/false) - whether to render text underlined. Defaults to false.
- strikethrough: Boolean (true/false) - whether to render text with a strikethrough. Defaults to false.
- obfuscated: Boolean (true/false) - whether to render text obfuscated. Defaults to false.
- insertion: When the text is shift-clicked by a player, this string will be inserted in their chat input. It will not overwrite any existing text the player was writing.
- clickEvent: Allows for events to occur when the player clicks on text.
- action: The action to perform when clicked. Valid values are 'open_url' (opens value as a URL in the player's default web browser), 'open_file' (opens the value file on the user's computer), 'run_command' (has value entered in chat as though the player typed it themselves. This can be used to run commands, but the command will fail if the player does not have the required permissions to use it), 'change_page' (can only be used in written books) changes to page value if that page exists, and 'suggest_command' (similar to 'run_command' but it cannot be used in a written book, the text only appears in the player's chat input and it is not automatically entered. Unlike insertion, this will replace the existing contents of the chat input). 'open_file' is used in messages automatically generated by the game (e.g. on taking a screenshot) and cannot be used in commands or signs.
- value: The URL, file, chat, command or book page used by the specified action. Note that commands must be prefixed with the usual '/' slash.
- hoverEvent: Allows for a tooltip to be displayed when the player hovers their mouse over text.
- action: The type of tooltip to show. Valid values are 'show_text' (shows raw JSON text), 'show_item' (shows the tooltip of an item which can have NBT tags), and 'show_entity' (shows an entity's name, possibly its type, and its UUID).
- value: The formatting of this tag varies depending on the action. Note that 'show_text' is the only action to support an Object as the value; all other action values are Strings and should thus be wrapped in quotes.
- 'show_text' can be either a raw string of text or an object with the same formatting as this base object. Note that clickEvent and hoverEvent do not function within the tooltip, but the formatting and extra tags still work.
- 'show_item' can be a string formatted like item NBT data. Contains the 'id' tag, and optionally the 'Damage' tag and 'tag' tag (which is the same compound used as 'dataTag' in the
/give
command). - 'show_entity' can be string formatted like a compound with the string values 'type' (such as 'Zombie'), 'name', and 'id' (should be an entity UUID, but can actually be any string).
- text: A string representing raw text to display directly in chat. Note that selectors such as '@a' and '@p' are not translated into player names; use selector instead. Can use escape characters, such as
Due to the extra tag, the above format may be recursively nested to produce very complex and functional text strings. However, a raw json text doesn't have to be complicated at all: virtually all properties are optional and may be left out.
To be valid, each object must have at least either text, translate, score, selector or keybind (everything else is optional). As a matter of shorthand, however, the entire Object may be substituted with a String. In this case, that string will be considered the value of the text property. For example, 'This is raw text'
is equivalent to {'text':'This is raw text'}
. This shorthand substitution is valid anywhere a raw text object is required (including the base <raw json message> argument of /tellraw
, the elements of the extra list, and the value of a 'show_text' hover_event).
/tellraw
also accepts an array of objects and/or strings; they are concatenated. It even accepts a tree of nested arrays; they are traversed depth-first. For example:
Finally, unlike other commands using JSON, /tellraw
Strings support Unicode via the notation u####
, where #### is the Unicode hexadecimal number for the desired character.
- External links
- Skylinerw's JSON Text Component
- Tellraw Generator
- List of all Keybinds
Block/item/entity... names[edit]
Many commands have arguments that identify particular types of blocks, items, entities, advancements, bossbars, effects, enchantments and so on. In the command syntax below, these typically appear as elements named <block>
, <item>
, or the like which are replaced with identifiers such as minecraft:stone
in the examples. These IDs all have namespaces. All original Minecraft contents are namespaced minecraft
while contents from mods or data packs have other namespaces. Namespace prefix of IDs namespaced minecraft
can be omitted for most situations; however, in certain cases, such as NBT data tag matching, full namespaced ids are required.
List of argument types in Java Edition[edit]
Mc Command Center Download 2019
These are the argument types in Minecraft: Java Edition.
List and summary of commands[edit]
The table below summarizes all commands, including upcoming ones. Click a column heading to sort by that column. Click the link in the first unit of each row to get detailed usage of each command.
Command | Description | BE | EE | JE | OP level | MP Only | ||||
---|---|---|---|---|---|---|---|---|---|---|
/ability | Grants or revokes a player ability. | Removed | Yes | — | 2 | — | — | — | — | |
/advancement | Gives, removes, or checks player advancements. | — | — | Yes | 2 | — | — | — | — | |
/ban | Adds player to banlist. | — | — | Yes | 3 | MP | — | — | — | |
/ban-ip | Adds IP address to banlist. | — | — | Yes | 3 | MP | — | — | — | |
/banlist | Displays banlist. | — | — | Yes | 3 | MP | — | — | — | |
/bossbar | Creates and modifies bossbars. | — | — | Yes | 2 | — | — | — | ||
/classroommode | Ability to edit restricted blocks. | — | Yes | — | 3 | — | — | — | — | — |
/clear | Clears items from player inventory. | Yes | Yes | Yes | 2 | — | — | — | — | |
/clone | Copies blocks from one place to another. | Yes | Yes | Yes | 2 | — | — | — | — | |
/data | Gets, merges, modifies and removes block entity and entity NBT data. | — | — | Yes | 2 | — | — | |||
/datapack | Controls loaded data packs. | — | — | Yes | 2 | — | — | — | — | |
/debug | Starts or stops a debugging session. | — | — | Yes | 3 | — | — | — | — | — |
/defaultgamemode | Sets the default game mode. | — | — | Yes | 2 | — | — | — | — | |
/deop | Revokes operator status from a player. | Yes | Yes | Yes | 3 | MP | — | — | — | |
/difficulty | Sets the difficulty level. | Yes | Yes | Yes | 2 | — | — | — | — | |
/effect | Add or remove status effects. | Yes | Yes | Yes | 2 | — | — | — | ||
/enchant | Enchants a player item. | Yes | Yes | Yes | 2 | — | — | — | — | |
/execute | Executes another command. | Yes | Yes | Yes | 2 | — | — | — | — | — |
/experience | Adds or removes player experience. | Yes | Yes | Yes | 2 | — | — | — | — | |
/fill | Fills a region with a specific block. | Yes | Yes | Yes | 2 | — | — | — | — | |
/forceload | Forces chunks to constantly be loaded or not. | — | — | Yes | 2 (query) 4 (others) | — | — | — | — | |
/function | Runs a function. | Yes | — | Yes | 2 | — | — | — | — | — |
/gamemode | Sets a player's game mode. | Yes | Yes | Yes | 2 | — | — | — | — | |
/gamerule | Sets or queries a game rule value. | Yes | Yes | Yes | 2 | — | — | — | — | |
/give | Gives an item to a player. | Yes | Yes | Yes | 2 | — | — | — | — | |
/help | Provides help for commands. | Yes | Yes | Yes | 0 | — | — | — | — | — |
/immutableworld | Allows setting immutable state of a world. | — | — | Yes | 3 | — | — | — | — | |
/kick | Kicks a player off a server. | — | — | Yes | 3 | MP | — | — | — | |
/kill | Kills entities (players, mobs, items, etc.). | Yes | Yes | Yes | 2 | — | — | — | ||
/list | Lists players on the server. | Yes | Yes | Yes | 0 | — | — | — | — | |
/locate | Locates closest structure. | Yes | Yes | Yes | 2 | — | — | — | — | |
/loot | Drops items from an inventory slot onto the ground. | — | — | Yes | 2 | — | ||||
/me | Displays a message about the sender. | Yes | Yes | Yes | 0 | — | — | — | — | |
/mixer | Mixer interactivity control. | Yes | — | — | 2 | — | — | — | — | — |
/mobevent | Enables/disables a specified mob event. | Yes | Unknown | — | 2 | — | — | — | — | |
/msg | Displays a private message to other players. | Yes | Yes | Yes | 0 | — | — | — | — | |
/op | Grants operator status to a player. | Yes | Yes | Yes | 3 | MP | — | — | — | |
/pardon | Removes entries from the banlist. | — | — | Yes | 3 | MP | — | — | — | |
/particle | Creates particles. | Yes | — | Yes | 2 | — | — | — | — | |
/playsound | Plays a sound. | Yes | Yes | Yes | 2 | — | — | — | — | |
/publish | Opens single-player world to local network. | — | — | Yes | 4 | SP only | — | — | — | |
/recipe | Gives or takes player recipes. | — | — | Yes | 2 | — | — | — | — | |
/reload | Reloads loot tables, advancements, and functions from disk. | Yes | — | Yes | 4 | — | — | — | — | |
/remove | Removing agent. | — | Yes | — | 3 | — | — | — | — | |
/resupply | Resupply villagers. | Upcoming | — | — | 2 | — | — | — | — | |
/replaceitem | Replaces items in inventories. | Yes | Yes | Yes | 2 | — | — | |||
/save | Prepares a backup, queries its status, or resumes. | BDS only | — | — | — | MP | — | — | — | |
/save-all | Saves the server to disk. | — | — | Yes | 4 | MP | — | — | — | |
/save-off | Disables automatic server saves. | — | — | Yes | 4 | MP | — | — | — | |
/save-on | Enables automatic server saves. | — | — | Yes | 4 | MP | — | — | — | |
/say | Displays a message to multiple players. | Yes | Yes | Yes | 1 | — | — | — | — | — |
/schedule | Delays the execution of a function. | — | — | Yes | 2 | — | — | — | — | — |
/scoreboard | Manages objectives, players, teams, and tags. | Yes | — | Yes | 2 | — | — | — | ||
/seed | Displays the world seed. | — | — | Yes | 2 | — | — | — | — | |
/setblock | Changes a block to another block. | Yes | Yes | Yes | 2 | — | — | — | — | |
/setidletimeout | Sets the time before idle players are kicked. | — | — | Yes | 3 | MP | — | — | — | |
/setmaxplayers | Sets the maximum number of players allowed to join. | Yes | Yes | — | 0 | — | — | — | — | |
/setworldspawn | Sets the world spawn. | Yes | Yes | Yes | 2 | — | — | — | — | |
/spawnpoint | Sets the spawn point for a player. | Yes | Yes | Yes | 2 | — | — | — | — | |
/spreadplayers | Teleports entities to random locations. | Yes | Yes | Yes | 2 | — | — | — | ||
/stop | Stops a server. | — | — | Yes | 4 | MP | — | — | — | |
/stopsound | Stops a sound. | Yes | Yes | Yes | 2 | — | — | — | — | |
/summon | Summons an entity. | Yes | Yes | Yes | 2 | — | — | — | — | |
/tag | Controls entity tags. | Yes | — | Yes | 2 | — | — | — | ||
/team | Controls teams. | — | — | Yes | 2 | — | — | — | ||
/teleport | Teleports entities. | Yes | Yes | Yes | 2 | — | — | — | ||
/teammsg | Specifies the mesage to send to team. | — | — | Yes | 0 | — | — | — | — | |
/tell | Displays a private message to other players. | Yes | Yes | Yes | 0 | — | — | — | — | |
/tellraw | Displays a JSON message to players. | Yes | — | Yes | 2 | — | — | — | — | |
/testfor | Counts entities matching specified conditions. | Yes | Yes | — | 2 | — | — | — | ||
/testforblock | Tests whether a block is in a location. | Yes | Yes | — | 2 | — | — | — | — | |
/testforblocks | Tests whether the blocks in two regions match. | Yes | Yes | — | 2 | — | — | — | — | |
/tickingarea | Add, remove, or list ticking areas. | Yes | Yes | — | 2 | — | — | — | — | |
/time | Changes or queries the world's game time. | Yes | Yes | Yes | 2 | — | — | — | — | |
/title | Manages screen titles. | Yes | Yes | Yes | 2 | — | — | — | — | |
/toggledownfall | Toggles the weather. | Yes | Yes | — | 2 | — | — | — | — | |
/tp | Teleports entities. | Yes | Yes | Yes | 2 | — | — | — | ||
/transferserver | Transfer player to a server. | Yes | Yes | — | 0 | — | — | — | — | — |
/trigger | Sets a trigger to be activated. | — | — | Yes | 0 | — | — | — | — | |
/w | Displays a private message to other players. | Yes | Yes | Yes | 0 | — | — | — | — | |
/weather | Sets the weather. | Yes | Yes | Yes | 2 | — | — | — | — | |
/whitelist | Manages server whitelist. | — | — | Yes | 3 | MP | — | — | — | |
/worldborder | Manages the world border. | — | — | Yes | 2 | — | — | — | — | |
/worldbuilder | Ability to edit restricted blocks. | Yes | Yes | — | 3 | — | — | — | — | |
/wsserver | Connects to a WebSocket server. | Yes | Yes | — | 0 | — | — | — | — | — |
/xp | Adds or removes player experience. | Yes | Yes | Yes | 2 | — | — | — | — |
Removed commands[edit]
Command | Description | Reason for Deletion | PE | EE | JE | OP level | MP Only | ||||
---|---|---|---|---|---|---|---|---|---|---|---|
/achievement | Gives or takes an achievement from a player. | Achievements were removed in Java Edition 1.12. | — | — | Removed | 2 | — | — | — | — | |
/broadcast | Broadcasts a message across the entire server. | Repurposed as /say in Java Edition Classic 0.0.16a_01. | — | — | Removed | 2 | — | — | — | — | — |
/entitydata | Modifies the data tag of an entity. | Repurposed as /data in Java Edition 1.13. | — | — | Removed | 2 | — | — | — | — | |
/home | Teleports player to the world spawn. | World spawn became based on spawn chunks instead of a singular location. | — | — | Removed | 0 | — | — | — | — | — |
/setspawn | Sets the current location as the default spawn location for new players. | World spawn became based on spawn chunks instead of a singular location. | — | — | Removed | 2 | — | — | — | — | — |
/solid | Toggles between placing stone and placing bedrock. | Feature removed during Java Edition Indev, placing blocks became inventory based. | — | — | Removed | 2 | — | — | — | — | — |
/stats | Update objectives from command results. | Became part of /execute in Java Edition 1.13. | — | — | Removed | 2 | — | — | |||
/unban | Pardons a banned player. | Repurposed as /pardon in Java Edition Alpha 1.0.16. | — | — | Removed | 3 | MP | — | — | — | |
/toggledownfall | Toggles the weather. | Removed in Java Edition 1.13 due to redundancy with the /weather command. | — | — | Removed | 2 | — | — | — | — |
Command guide[edit]
- Syntax
If you see... | Then |
---|---|
plain text | Enter this literally, exactly as shown. |
<angle brackets> | Replace this with an appropriate value. |
[square brackets] | This is an optional argument. |
(<entry> <entry>) | (Required) Pick one of the entries shown, often literal words. |
[<entry> <entry>] | (Optional) Pick one of the entries shown, often literal words. |
ellipsis ... | This entry may repeat more than once. |
<argument>: <int> | The argument is expected to be an integer. |
<argument>: <double> | The argument is expected to be a double-precision float. |
<argument>: <string> | The argument is expected to be a string. Quotes must be applied if any non-alphanumeric characters show up in the string. |
- Success Conditions
- A command's Success Conditions must be met in order for the game to consider the command 'successful'. This is used to determine a variety of things, such as the output of a redstone comparator feeding from command block with a command. Note that not all 'successful' commands actually do something, and not all 'failed' commands fail to do something useful.
- Restrictions
- None: The command can be used by any player in any world. The following commands have no restrictions:
/help
,/me
,/tell
, and/trigger
. - Operator: The command may only be used by an operator or in singleplayer mode with cheats enabled. On multiplayer servers, the results of these commands are broadcast to other ops online.
- Multiplayer: The command is only available on a multiplayer server. The following commands are restricted to multiplayer servers:
/ban
,/ban-ip
,/banlist
,/deop
,/kick
,/list
,/op
,/pardon
,/pardon-ip
,/save-all
,/save-off
,/save-on
,/setidletimeout
,/stop
,/whitelist
.
- No multiplayer commands permit target selectors in arguments.
- Except for
/list
, multiplayer commands cannot be used in command blocks. - Many of these commands can be used on players who have never been to the server, or even on names which are not (or cannot be) registered as Minecraft accounts.
- No command blocks: The command cannot be executed by a command block.
Video[edit]
Video made by slicedlime:
History[edit]
This page is currently in the process of being split into two or more separate articles. Please help in the splitting of this page.Discuss The topics presented on this page may be diverse enough to warrant distinct pages. Reason: Move history to each subpage. |
Java Edition Classic | |||||
---|---|---|---|---|---|
0.0.15a (Multiplayer Test 3) | Added /ban , /banip , /broadcast , /deop , /kick , /op , /tp , and /unban . | ||||
0.0.16a_01 | Changed /broadcast to /say . | ||||
0.0.17a | Added /setspawn . | ||||
0.0.20a | Added /solid . | ||||
Java Edition Indev | |||||
0.31 | Removed all commands. | ||||
Java Edition Alpha | |||||
v1.0.16 | Added /ban , /ban-ip , /banlist , /deop , /home , /kick , /op , /pardon , /pardon-ip , /say , and /stop . | ||||
v1.0.16_01 | Added /save-all , /save-on , /save-off and /tp . | ||||
v1.0.16_02 | Added /list and /tell . | ||||
v1.2.5 | Removed /home . | ||||
v1.2.6 | Added /kill . | ||||
Java Edition Beta | |||||
1.3 | Added /whitelist . | ||||
Java Edition | |||||
1.3.1 | 12w16a | Added cheats mode and /gamemode , /give , /time , /toggledownfall , and /xp . | |||
12w17a | Added /help . | ||||
12w21a | Added /seed . | ||||
12w22a | Added /defaultgamemode . | ||||
12w24a | Added /publish . | ||||
12w25a | Cheats can now be turned on or off when opening a world to other players through LAN. | ||||
12w27a | Added /debug . | ||||
12w30a | /gamemode 3 change to /gamemode 0 (survival mode). | ||||
1.4.2 | 12w32a | Added /difficulty , /gamerule , /spawnpoint , and /weather . | |||
Added target selectors. | |||||
12w37a | Added /clear . | ||||
12w38a | Added item arguments to /clear . | ||||
12w41a | The limit for /xp is now 2,147,483,647 instead of 5,000. | ||||
1.4.4 | pre | Added /enchant . | |||
1.5 | 13w03a | Added /testfor . | |||
13w04a | Added /scoreboard . | ||||
13w09b | Added /effect . | ||||
1.6.1 | 13w23a | Added /spreadplayers . | |||
Added gamerule naturalRegeneration . | |||||
13w24a | Added gamerule doDaylightCycle . | ||||
13w24b | The damage dealt by /kill was changed from 1,000 to 3.4×1038. | ||||
1.6-pre | Added clear argument to /effect . | ||||
pre | Added /playsound . | ||||
1.7.2 | 13w36a | Added /summon . | |||
Added /achievement . | |||||
Added dataTag argument to /give . | |||||
13w37a | Added /setblock , /tellraw , and /testforblock . | ||||
13w38a | Added /setidletimeout . | ||||
13w43a | Added /setworldspawn . | ||||
1.8 | 14w02a | Added /blockdata . | |||
Added the @e target selector variable. | |||||
Added player entity argument to /kill . | |||||
Added data argument to /clear . | |||||
Added dataTag argument to /testfor . | |||||
/testfor is no longer exclusive to command blocks. | |||||
Added insertion attribute to raw JSON text specification. | |||||
14w02c | To fix MC-44371, /kill now directly kills non-living targets, rather than dealing 3.4×1038 void damage. | ||||
14w03a | Added rotation arguments to /tp . | ||||
Added dx , dy , and dz to target selector arguments. | |||||
Added /clone and /fill . | |||||
Added gamerule logAdminCommands . | |||||
NBT data now supports using string IDs rather than numerical IDs. | |||||
Numerical IDs no longer work in other parts of commands, though they still work for NBT data. | |||||
14w04a | Added /particle . | ||||
14w05a | Added spectator to /gamemode and /defaultgamemode . | ||||
14w06a | Added hideParticles argument to /effect . | ||||
Added /trigger . | |||||
14w07a | Added /execute and /testforblocks . | ||||
/testfor can now test for partial NBT tag matches. | |||||
14w08a | Commands run using /execute now pass their success value back to the command block running them. | ||||
14w10a | Added gamerule showDeathMessages . | ||||
Added force option to /clone . | |||||
14w17a | Added /worldborder . | ||||
Added gamerule randomTickSpeed . | |||||
14w19a | Added /worldborder damage and /worldborder warning . | ||||
14w20a | Added /title . | ||||
Added selector attribute to raw JSON text specification. | |||||
Added move option to /clone . | |||||
14w26a | Added /worldborder add . | ||||
Added /replaceitem . | |||||
Added gamerule sendCommandFeedback | |||||
14w28a | Added /stats . | ||||
14w29a | Added /worldborder get . | ||||
Added force argument to /particle . | |||||
Added /time query . | |||||
Added the ability to create dummy gamerules. | |||||
Added QueryResults to /stats . | |||||
14w30a | /summon can now spawn lightning. | ||||
14w31a | /debug can be run in single player. | ||||
Added chunk argument to /debug . | |||||
14w32b | Added /entitydata . | ||||
/give can no longer make illegal stacks. | |||||
1.8.1 | pre1 | Added the game rule doEntityDrops . | |||
The game rule doTileDrops no longer affects entities. | |||||
1.9 | 15w37a | Added gamerule spectatorsGenerateChunks . | |||
15w43a | /gamemode now displays in chat the gamemode the player switched to. | ||||
15w49a | /playsound now accepts Tab to complete. | ||||
Added player and params tag to the /particle | |||||
15w49b | /time query now accepts day as a value. | ||||
15w51a | Added gamerule spawnRadius . | ||||
16w02a | The m selector now accepts the standard literal gamemode values and abbreviations, such as a and adventure , and these may be negated as well. | ||||
/playsound now requires a source parameter, specifying what is the sound's category for volume purposes. | |||||
Running /help in a command block will now randomly use one of various different humorous phrases as the previous output. | |||||
16w03a | /achievement no longer affects statistics. | ||||
16w07a | Added gamerule disableElytraMovementCheck . | ||||
1.9.3 | pre1 | /tp will no longer teleport the player to a y-coordinate outside the range -512 to 512. | |||
pre2 | Added /stopsound . | ||||
1.10 | 16w21b | The y-coordinate range of /tp is increased to -4096 to 4096. | |||
pre1 | Added /teleport , which is like /tp , except that the target parameter is mandatory, the 'teleport to other player' usage is unavailable, and the use of relative coordinates is relative to the executor of the command, rather than relative to the target. | ||||
1.11 | 16w32a | Added block state support to /execute , /fill , /setblock and /testforblock . | |||
16w32b | Added ability for /title to display text in the action bar position. | ||||
16w38a | Added gamerules doWeatherCycle and maxEntityCramming . | ||||
Removed implicit target selectors (for example, @e[167,28,454] ). | |||||
Invalid target selectors (such as @e[Type=creeper] , @e[asdf=nonexistent] , and @e[malformed] ) now generate an error instead of being silently ignored. | |||||
16w39a | Added /locate . | ||||
1.12 | 17w13a | Added /recipe and /advancement . | |||
Added gamerule doLimitedCrafting . | |||||
Removed /achievement . | |||||
17w16b | Added gamerule maxCommandChainLength . | ||||
Added the @s target selector variable | |||||
17w18a | Added gamerule announceAdvancements . | ||||
Added /reload . | |||||
pre1 | Added gamerule gameLoopFunction . | ||||
Added /function . | |||||
1.13 | 17w45a | A new library named Brigadier is now used to parse commands. Different components of commands are displayed in different colors, and errors will be displayed in red without having to run the command. Commands, for the most part, do not allow uppercase letters, and are now much faster and more efficient. | |||
An nbt argument in target selectors. | |||||
Changed the syntax for several commands.[more information needed] | |||||
Added /tag and /team . | |||||
Removed /enchant , /stats , /testfor , /testforblock , /testforblocks and /toggledownfall . | |||||
The syntax of /execute has been split off. | |||||
/gamerule no longer accepts unknown values ('custom gamerules'). | |||||
Values to /gamerule are now type checked. | |||||
/publish now accepts an optional port argument. | |||||
17w45b | Added /data . | ||||
Removed /entitydata . | |||||
Reworked /execute store . | |||||
17w46a | Added /datapack . | ||||
The player now has the option to toggle automatic command suggestions. | |||||
The command UI has a new prototype, and now works in multiplayer. | |||||
17w47a | Removed /blockdata . | ||||
Particle names have been changed for the command /particle . | |||||
Added an option in chat to toggle automatic command suggestions. | |||||
17w48a | Tweaked the command suggestion UI. | ||||
Reworked tab-completion for coordinates. | |||||
17w49b | Removed the gameLoopFunction /gamerule . | ||||
17w50a | Local coordinates can now be specified in commands using ^ . | ||||
Tab-completing when not targeting a block will suggest ~ ~ ~ . | |||||
18w01a | Added facing to /teleport , which will make the target entity face an entity or a location. | ||||
Added the options noon and midnight to /time set . | |||||
Changed all custom names (blocks, items, entities, block entities) to translatable text components. | |||||
Thrower and Owner nbt keys of item entities are no longer strings but are instead compounds with two longs named L and M . | |||||
owner nbt keys of snowballs, eggs and ender pearls are no longer strings but are instead compounds with two longs named L and M . | |||||
18w02a | Errors during a command are now a nicer error message (with a tool tip for more info). | ||||
/teleport has been simplified a bit, and players can now teleport to entities in other dimensions. | |||||
Added new sub-commands to /execute to allow for more control over commands. | |||||
Server commands now run from world spawn in the Overworld, instead of at 0,0,0 . | |||||
18w03a | Improved performance of command parsing and command execution. | ||||
Added commands to the profiler (/debug). | |||||
/data get with a path now works on non-numeric values. | |||||
Added the /particle <name> <pos> shortcut. | |||||
18w05a | Added /bossbar | ||||
New /execute store subcommand. | |||||
Added basic entity selector suggestions in the command UI. | |||||
A warning is now logged for ambiguous commands. | |||||
18w06a | Re-added /enchant . | ||||
Added command suggestions for entity selectors. | |||||
Whitespaces are now allowed in entity selectors & blockstate arguments. | |||||
/locate now accepts different structure names for all structures previously grouped under Temple : Desert_Pyramid , Igloo , Jungle_Pyramid , and Swamp_Hut . | |||||
18w08a | Added a clickable teleport link to the /locate command output. | ||||
18w19a | The output of the /seed command can now be copied. | ||||
18w20a | Teams now have a prefix and a suffix. | ||||
pre7 | Added /scoreboard objectives modify <objectiveName> displayname <displayName> . | ||||
pre8 | Added /team modify <teamName> displayName . | ||||
Added /scoreboard objectives modify <objectiveName> rendertype hearts , which makes health bars display as hearts, like this: . | |||||
Added /scoreboard objectives modify <objectiveName> rendertype integer , which makes health bars display as yellow numbers. | |||||
Team names & objective names are now text components, not raw strings. | |||||
/team option is now /team modify . | |||||
1.13.1 | 18w31a | Added /chunk . | |||
pre1 | Renamed /chunk to /forceload . | ||||
September 26, 2018 | Brigadieropen-sourced under the MIT license. (Source code previously was available on the library site, with no license specified). | ||||
1.14 | 18w43a | Added /drop and /schedule . | |||
/replaceitem can now be used on item frames. | |||||
18w45a | /drop renamed to /loot and reworked. | ||||
19w02a | Added /teammsg . | ||||
Pocket Edition Alpha | |||||
0.7.4 | Added support for commands, though none are implemented yet. | ||||
0.16.0 | build 1 | Added /clearfixedinv , /clone , /deop , /execute , /fill , /gamemode , /give , /help (with alias /? ), /kill , /list , /op , /say , /setblock , /setfixedinvslot , /setworldspawn , /spawnpoint , /summon , /tell (with aliases /msg and /w ), /testforblock , /testforblocks , /time , /toggledownfall , /tp (with alias /teleport ), /weather , /wsserver and /xp . | |||
Functionality of most commands is equivalent to Java Edition 1.10 usage. Differences include: no support for datatags, /clone cannot use forced cloneMode, /gamemode can only use Creative and Survival modes, the player target is optional in /give , and the entity target is optional in /execute . | |||||
build 2 | Removed /clearfixedinv and /setfixedinvslot , along with other Education Edition - related items. | ||||
build 5 | Added /enchant . | ||||
Pocket Edition | |||||
1.0.0 | alpha 0.17.0.1 | Added /locate and /connect . | |||
alpha 0.17.0.2 | Removed /locate . | ||||
alpha 1.1.0.0 | Re-added /locate . Only works for strongholds. | ||||
1.0.3 | alpha 1.0.3.0 | Added /transferserver . | |||
1.0.5 | alpha 1.0.5.0 | Added /clear , /difficulty , /effect , /gamerule , /me , /particle , /playsound , /replaceitem , /spreadplayers , /stopsound , /testfor and /title . | |||
alpha 1.0.5.3 | Removed /particle . | ||||
The amplifier on /effect can no longer have negative values. | |||||
1.1.0 | alpha 1.1.0.0 | The canplaceon and candestroy are now supported for /replaceitem . | |||
/locate can now find other structures. | |||||
Added the dodaylightcycle , doentitydrops , dofiretick , domobspawning , domobloot , dotiledrops , doweathercycle , keepinventory and mobgriefing gamerules. | |||||
? | Added /setmaxplayers . | ||||
Bedrock Edition | |||||
1.2.0 | beta 1.2.0.2 | Added /tickingarea . | |||
1.5.0 | beta 1.5.0.0 | Added 5 new commands for worlds with education edition features enabled. | |||
1.6.0 | beta 1.6.0.6 | Added the doinsomnia gamerule. | |||
1.7.0 | beta 1.7.0.2 | Added /scoreboard . | |||
Added the commandblocksenabled gamerule. | |||||
1.8.0 | beta 1.8.0.8 | Readded /particle . | |||
Added the randomTickSpeed gamerule. | |||||
Added /reload . | |||||
Added /function . | |||||
1.9.0 | beta 1.9.0.0 | Added /tellraw . | |||
Added the showdeathmessages gamerule. | |||||
Added the immediaterespawn gamerule. | |||||
Added new particles for /particle . | |||||
1.11.0 | beta 1.11.0.1 | Added /resupply however this doesn't work. | |||
beta 1.11.0.3 | Added /mobevent . | ||||
Upcoming Bedrock Edition | |||||
1.12.0 | beta 1.12.0.2 | Added spawnradius game rule. | |||
Added sendcommandblockfeedback game rule. | |||||
Added more new particles for /particle . | |||||
Added new commands for map making and add-ons. |
Issues[edit]
Mc Command Center Update 2018
Issues relating to 'Commands' are maintained on the bug tracker. Report issues there.
See also[edit]
Java Edition | ||||
---|---|---|---|---|
Versions |
| |||
Development |
| |||
Technical |
| |||
Multiplayer | ||||
Game customization |
|
Bedrock Edition | ||||||||
---|---|---|---|---|---|---|---|---|
Editions |
| |||||||
Development | ||||||||
Technical |
| |||||||
Multiplayer | ||||||||
Exclusive features |
| |||||||
Removed |