At the very left column should only be a single bracket, being a closing curly bracket. You have multiple brackets here, meaning you've closed the dataTags too early and attempted to open a second set, which is where your error comes from; all dataTags can only be in the same set.
You are also missing a comma after your first Equipment. To add a color to leather armor, you would apply the "display" tag within the "tag" tag, and then insert the "color" tag into the "display" tag. You need to use a decimal number as the value, which you can pick from here: http://www.mathsisfun.com/hexadecimal-decimal-colors.html
For your equipment, you've inserted 6 values when you can only use 5. The order is: Hands, Feet, Legs, Chest, Head. You've inserted a bow after the Head slot, which is not applicable, thus I've removed it.
1.8 no longer supports numerical IDs for items, so you will have to switch to the new format.
[Error MSG]"Data tag parsing failed: Encountered multiple top tags, only one expected"
Also I don't know how to make the armor white.
-
View User Profile
-
View Posts
-
Send Message
Retired StaffHere is your command indented for debugging:
/summon Skeleton ~-7 ~3 ~-16 { ActiveEffects:[ { Id:5, Amplifier:2, Duration:10000000 }, { Id:10, Amplifier:5, Duration:10000000 } ] }, { Equipment:[ { id:268, tag:{ ench:[ { id:16, lvl:1 } ] } } { id:301, tag:{ ench:[ { id:7, lvl:1 } ] } }, { id:300, tag:{ ench:[ { id:7, lvl:1 } ] } }, { id:299, tag:{ ench:[ { id:7, lvl:1 } ] } }, { id:298, tag:{ ench:[ { id:4, lvl:1 } ] } }, { id:261, tag:{ ench:[ { id:50, lvl:1 } ] } } ], CustomNameVisible:1, CustomName:"White Knight" }At the very left column should only be a single bracket, being a closing curly bracket. You have multiple brackets here, meaning you've closed the dataTags too early and attempted to open a second set, which is where your error comes from; all dataTags can only be in the same set.
You are also missing a comma after your first Equipment. To add a color to leather armor, you would apply the "display" tag within the "tag" tag, and then insert the "color" tag into the "display" tag. You need to use a decimal number as the value, which you can pick from here: http://www.mathsisfun.com/hexadecimal-decimal-colors.html
For your equipment, you've inserted 6 values when you can only use 5. The order is: Hands, Feet, Legs, Chest, Head. You've inserted a bow after the Head slot, which is not applicable, thus I've removed it.
1.8 no longer supports numerical IDs for items, so you will have to switch to the new format.
Your fixed command for 1.7.4:
/summon Skeleton ~-7 ~3 ~-16 { ActiveEffects:[ { Id:5, Amplifier:2, Duration:10000000 }, { Id:10, Amplifier:5, Duration:10000000 } ], Equipment:[ { id:268, tag:{ ench:[ { id:16, lvl:1 } ] } }, { id:301, tag:{ ench:[ { id:7, lvl:1 } ], display:{ color:16777215 } } }, { id:300, tag:{ ench:[ { id:7, lvl:1 } ], display:{ color:16777215 } } }, { id:299, tag:{ ench:[ { id:7, lvl:1 } ], display:{ color:16777215 } } }, { id:298, tag:{ ench:[ { id:4, lvl:1 } ], display:{ color:16777215 } } } ], CustomNameVisible:1, CustomName:"White Knight" }Condensed for 1.7.4:
/summon Skeleton ~-7 ~3 ~-16 {ActiveEffects:[{Id:5,Amplifier:2,Duration:10000000},{Id:10,Amplifier:5,Duration:10000000}],Equipment:[{id:268,tag:{ench:[{id:16,lvl:1}]}},{id:301,tag:{ench:[{id:7,lvl:1}],display:{color:16777215}}},{id:300,tag:{ench:[{id:7,lvl:1}],display:{color:16777215}}},{id:299,tag:{ench:[{id:7,lvl:1}],display:{color:16777215}}},{id:298,tag:{ench:[{id:4,lvl:1}],display:{color:16777215}}}],CustomNameVisible:1,CustomName:"White Knight"}Your fixed command for 1.8+:
/summon Skeleton ~-7 ~3 ~-16 { ActiveEffects:[ { Id:5, Amplifier:2, Duration:10000000 }, { Id:10, Amplifier:5, Duration:10000000 } ], Equipment:[ { id:minecraft:wooden_sword, tag:{ ench:[ { id:16, lvl:1 } ] } }, { id:minecraft:leather_boots, tag:{ ench:[ { id:7, lvl:1 } ], display:{ color:16777215 } } }, { id:minecraft:leather_leggings, tag:{ ench:[ { id:7, lvl:1 } ], display:{ color:16777215 } } }, { id:minecraft:leather_chestplate, tag:{ ench:[ { id:7, lvl:1 } ], display:{ color:16777215 } } }, { id:minecraft:leather_helmet, tag:{ ench:[ { id:4, lvl:1 } ], display:{ color:16777215 } } } ], CustomNameVisible:1, CustomName:"White Knight" }Condensed for 1.8+:
/summon Skeleton ~-7 ~3 ~-16 {ActiveEffects:[{Id:5,Amplifier:2,Duration:10000000},{Id:10,Amplifier:5,Duration:10000000}],Equipment:[{id:minecraft:wooden_sword,tag:{ench:[{id:16,lvl:1}]}},{id:minecraft:leather_boots,tag:{ench:[{id:7,lvl:1}],display:{color:16777215}}},{id:minecraft:leather_leggings,tag:{ench:[{id:7,lvl:1}],display:{color:16777215}}},{id:minecraft:leather_chestplate,tag:{ench:[{id:7,lvl:1}],display:{color:16777215}}},{id:minecraft:leather_helmet,tag:{ench:[{id:4,lvl:1}],display:{color:16777215}}}],CustomNameVisible:1,CustomName:"White Knight"}