Chain Command Blocks Not Equipping Armor? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Trigger command blocks remotely?How to make a command block chain?What is wrong with this custom command sign?How can I join two lines of conditional chain command blocks without resorting to redstone?Can multiple command blocks feed into a chain?Written books from command blocks not workingDeactivating command blocksBats don't drop items they are holding in MinecraftWhat are Chain Command Blocks used for in Minecraft?
A German immigrant ancestor has a "Registration Affidavit of Alien Enemy" on file. What does that mean exactly?
Knights and Knaves question
/bin/ls sorts differently than just ls
When does Bran Stark remember Jamie pushing him?
What were wait-states, and why was it only an issue for PCs?
Why do C and C++ allow the expression (int) + 4*5?
Providing direct feedback to a product salesperson
Can the van der Waals coefficients be negative in the van der Waals equation for real gases?
Recursive calls to a function - why is the address of the parameter passed to it lowering with each call?
Does using the Inspiration rules for character defects encourage My Guy Syndrome?
Trying to enter the Fox's den
Is Bran literally the world's memory?
What is the difference between 准时 and 按时?
What's the difference between using dependency injection with a container and using a service locator?
"Destructive force" carried by a B-52?
How was Lagrange appointed professor of mathematics so early?
How can I introduce the names of fantasy creatures to the reader?
How to mute a string and play another at the same time
Is there a verb for listening stealthily?
What could prevent concentrated local exploration?
Why aren't road bike wheels tiny?
What is the ongoing value of the Kanban board to the developers as opposed to management
Can this water damage be explained by lack of gutters and grading issues?
Raising a bilingual kid. When should we introduce the majority language?
Chain Command Blocks Not Equipping Armor?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Trigger command blocks remotely?How to make a command block chain?What is wrong with this custom command sign?How can I join two lines of conditional chain command blocks without resorting to redstone?Can multiple command blocks feed into a chain?Written books from command blocks not workingDeactivating command blocksBats don't drop items they are holding in MinecraftWhat are Chain Command Blocks used for in Minecraft?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
The following command is used to force the player to equip armor:
/replaceitem entity @p[type=Player] slot.armor.head chainmail_helmet 1 0 display:Name:"Archer Helmet",Lore:["You feel somewhat faster, and resistant to ranged damage"],AttributeModifiers:[AttributeName:"generic.movementSpeed",Name:"generic.movementSpeed",Amount:0.10,Operation:0,UUIDMost:24682,UUIDLeast:195471,,AttributeName:"generic.armor",Name:"armor",Slot:"head",Amount:2.0,Operation:0,UUIDMost:100,UUIDLeast:100],ench:[id:0,lvl:2,id:4,lvl:2],Unbreakable:1
And when run in a command block, it works 100% fine, but when it is part of the chain, it gives the output saying:
[14:09:34] Replaced slot slot.armor.head with 1 * [Archer Helmet]
However no changes were made to the player's GUI. Any ideas why this would happen? I'm playing Minecraft 1.10
minecraft minecraft-commands
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
The following command is used to force the player to equip armor:
/replaceitem entity @p[type=Player] slot.armor.head chainmail_helmet 1 0 display:Name:"Archer Helmet",Lore:["You feel somewhat faster, and resistant to ranged damage"],AttributeModifiers:[AttributeName:"generic.movementSpeed",Name:"generic.movementSpeed",Amount:0.10,Operation:0,UUIDMost:24682,UUIDLeast:195471,,AttributeName:"generic.armor",Name:"armor",Slot:"head",Amount:2.0,Operation:0,UUIDMost:100,UUIDLeast:100],ench:[id:0,lvl:2,id:4,lvl:2],Unbreakable:1
And when run in a command block, it works 100% fine, but when it is part of the chain, it gives the output saying:
[14:09:34] Replaced slot slot.armor.head with 1 * [Archer Helmet]
However no changes were made to the player's GUI. Any ideas why this would happen? I'm playing Minecraft 1.10
minecraft minecraft-commands
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Is the command block actually being activated? Check that the time on the output (currently 14:09:34) is changing.
– SirBenet
Jun 21 '16 at 9:30
Is the chain command block powered or set to always active?
– RookieTEC9
Jun 21 '16 at 20:39
Yes it is @RookieTEC9
– David
Jun 22 '16 at 1:00
Can you take some screenshots or better a video showcasing this?
– RookieTEC9
Jun 22 '16 at 19:49
add a comment |
The following command is used to force the player to equip armor:
/replaceitem entity @p[type=Player] slot.armor.head chainmail_helmet 1 0 display:Name:"Archer Helmet",Lore:["You feel somewhat faster, and resistant to ranged damage"],AttributeModifiers:[AttributeName:"generic.movementSpeed",Name:"generic.movementSpeed",Amount:0.10,Operation:0,UUIDMost:24682,UUIDLeast:195471,,AttributeName:"generic.armor",Name:"armor",Slot:"head",Amount:2.0,Operation:0,UUIDMost:100,UUIDLeast:100],ench:[id:0,lvl:2,id:4,lvl:2],Unbreakable:1
And when run in a command block, it works 100% fine, but when it is part of the chain, it gives the output saying:
[14:09:34] Replaced slot slot.armor.head with 1 * [Archer Helmet]
However no changes were made to the player's GUI. Any ideas why this would happen? I'm playing Minecraft 1.10
minecraft minecraft-commands
The following command is used to force the player to equip armor:
/replaceitem entity @p[type=Player] slot.armor.head chainmail_helmet 1 0 display:Name:"Archer Helmet",Lore:["You feel somewhat faster, and resistant to ranged damage"],AttributeModifiers:[AttributeName:"generic.movementSpeed",Name:"generic.movementSpeed",Amount:0.10,Operation:0,UUIDMost:24682,UUIDLeast:195471,,AttributeName:"generic.armor",Name:"armor",Slot:"head",Amount:2.0,Operation:0,UUIDMost:100,UUIDLeast:100],ench:[id:0,lvl:2,id:4,lvl:2],Unbreakable:1
And when run in a command block, it works 100% fine, but when it is part of the chain, it gives the output saying:
[14:09:34] Replaced slot slot.armor.head with 1 * [Archer Helmet]
However no changes were made to the player's GUI. Any ideas why this would happen? I'm playing Minecraft 1.10
minecraft minecraft-commands
minecraft minecraft-commands
asked Jun 21 '16 at 4:05
DavidDavid
5601624
5601624
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Is the command block actually being activated? Check that the time on the output (currently 14:09:34) is changing.
– SirBenet
Jun 21 '16 at 9:30
Is the chain command block powered or set to always active?
– RookieTEC9
Jun 21 '16 at 20:39
Yes it is @RookieTEC9
– David
Jun 22 '16 at 1:00
Can you take some screenshots or better a video showcasing this?
– RookieTEC9
Jun 22 '16 at 19:49
add a comment |
Is the command block actually being activated? Check that the time on the output (currently 14:09:34) is changing.
– SirBenet
Jun 21 '16 at 9:30
Is the chain command block powered or set to always active?
– RookieTEC9
Jun 21 '16 at 20:39
Yes it is @RookieTEC9
– David
Jun 22 '16 at 1:00
Can you take some screenshots or better a video showcasing this?
– RookieTEC9
Jun 22 '16 at 19:49
Is the command block actually being activated? Check that the time on the output (currently 14:09:34) is changing.
– SirBenet
Jun 21 '16 at 9:30
Is the command block actually being activated? Check that the time on the output (currently 14:09:34) is changing.
– SirBenet
Jun 21 '16 at 9:30
Is the chain command block powered or set to always active?
– RookieTEC9
Jun 21 '16 at 20:39
Is the chain command block powered or set to always active?
– RookieTEC9
Jun 21 '16 at 20:39
Yes it is @RookieTEC9
– David
Jun 22 '16 at 1:00
Yes it is @RookieTEC9
– David
Jun 22 '16 at 1:00
Can you take some screenshots or better a video showcasing this?
– RookieTEC9
Jun 22 '16 at 19:49
Can you take some screenshots or better a video showcasing this?
– RookieTEC9
Jun 22 '16 at 19:49
add a comment |
1 Answer
1
active
oldest
votes
First make sure the chain command block is set to "always active" and in a straight line with the other leading command block. Also the chain has to start with a regular command block then the chain of chain command blocks.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f270798%2fchain-command-blocks-not-equipping-armor%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
First make sure the chain command block is set to "always active" and in a straight line with the other leading command block. Also the chain has to start with a regular command block then the chain of chain command blocks.
add a comment |
First make sure the chain command block is set to "always active" and in a straight line with the other leading command block. Also the chain has to start with a regular command block then the chain of chain command blocks.
add a comment |
First make sure the chain command block is set to "always active" and in a straight line with the other leading command block. Also the chain has to start with a regular command block then the chain of chain command blocks.
First make sure the chain command block is set to "always active" and in a straight line with the other leading command block. Also the chain has to start with a regular command block then the chain of chain command blocks.
answered Oct 10 '16 at 1:33
LiamSnowLiamSnow
13117
13117
add a comment |
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f270798%2fchain-command-blocks-not-equipping-armor%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is the command block actually being activated? Check that the time on the output (currently 14:09:34) is changing.
– SirBenet
Jun 21 '16 at 9:30
Is the chain command block powered or set to always active?
– RookieTEC9
Jun 21 '16 at 20:39
Yes it is @RookieTEC9
– David
Jun 22 '16 at 1:00
Can you take some screenshots or better a video showcasing this?
– RookieTEC9
Jun 22 '16 at 19:49