/summon not working for json textExecuting a testfor command not working/kill command not working in 1.9 with entitys with a name too longTellraw command always has the error “Invalid json:”How to fix a JSON Text in Minecraft?Exploding arrow command not workingMinecraft MinecartChest team selector not workingWhy isn't my tellraw command working?How can I summon an object in motion where a player is looking?Snowballs and Armor Stands in post-1.11Armor stand help! Minecraft 1.13

How will law be enforced if violence becomes impossible?

How can I get a player to accept that they should stop trying to pull stunts without thinking them through first?

Does throwing a penny at a train stop the train?

When an electron changes its spin, or any other intrinsic property, is it still the same electron?

How can I truly shut down ssh server?

Which star / galaxy is moving away from us the fastest?

How to know if blackberries are safe to eat

If your plane is out-of-control, why does military training instruct releasing the joystick to neutralize controls?

Why return a static pointer instead of an out parameter?

Confirming the Identity of a (Friendly) Reviewer After the Reviews

How can a dictatorship government be beneficial to a dictator in a post-scarcity society?

How quality assurance engineers test calculations?

Would dual wielding daggers be a viable choice for a covert bodyguard?

Diagonal arrows (using TikZ) should be aligned in parallel

Short story about Nobel Prize winning scientists that drop out when they realise they were incorrect

Killing Magic Numbers: "const int" vs "constexpr int" (or is there no difference in the end)

Should disabled buttons give feedback when clicked?

What is the measurable difference between dry basil and fresh?

Is "De qui parles-tu" (for example) as formal as it is in English, or is it normal for the French to casually say that

Will transmitting on this antenna cause problems?

What is this little owl-like bird?

How can I fix the dull colors I am getting in Ubuntu 19.04 Terminal?

Why weren't bootable game disks ever common on the IBM PC?

Addressing unnecessary daily meetings with manager?



/summon not working for json text


Executing a testfor command not working/kill command not working in 1.9 with entitys with a name too longTellraw command always has the error “Invalid json:”How to fix a JSON Text in Minecraft?Exploding arrow command not workingMinecraft MinecartChest team selector not workingWhy isn't my tellraw command working?How can I summon an object in motion where a player is looking?Snowballs and Armor Stands in post-1.11Armor stand help! Minecraft 1.13






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I tried the command:



/summon Armor_Stand ~ ~1 ~ CustomName:"text":"hi","color":"aqua"


But all the time it showed me "Armor Stand" as the nametag. So is there any way I can fix this error and get a coloured nametag? I'm using Minecraft 1.10.2.










share|improve this question
























  • Data tags are case sensitive, so that is probably your only problem. Use CustomName instead of customname

    – MBraedley
    Aug 26 '16 at 14:53











  • I tried that tooo

    – Kartik Pillai
    Aug 26 '16 at 14:54

















1















I tried the command:



/summon Armor_Stand ~ ~1 ~ CustomName:"text":"hi","color":"aqua"


But all the time it showed me "Armor Stand" as the nametag. So is there any way I can fix this error and get a coloured nametag? I'm using Minecraft 1.10.2.










share|improve this question
























  • Data tags are case sensitive, so that is probably your only problem. Use CustomName instead of customname

    – MBraedley
    Aug 26 '16 at 14:53











  • I tried that tooo

    – Kartik Pillai
    Aug 26 '16 at 14:54













1












1








1








I tried the command:



/summon Armor_Stand ~ ~1 ~ CustomName:"text":"hi","color":"aqua"


But all the time it showed me "Armor Stand" as the nametag. So is there any way I can fix this error and get a coloured nametag? I'm using Minecraft 1.10.2.










share|improve this question
















I tried the command:



/summon Armor_Stand ~ ~1 ~ CustomName:"text":"hi","color":"aqua"


But all the time it showed me "Armor Stand" as the nametag. So is there any way I can fix this error and get a coloured nametag? I'm using Minecraft 1.10.2.







minecraft minecraft-commands






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 26 '16 at 14:58







Kartik Pillai

















asked Aug 26 '16 at 14:40









Kartik PillaiKartik Pillai

1202 silver badges12 bronze badges




1202 silver badges12 bronze badges












  • Data tags are case sensitive, so that is probably your only problem. Use CustomName instead of customname

    – MBraedley
    Aug 26 '16 at 14:53











  • I tried that tooo

    – Kartik Pillai
    Aug 26 '16 at 14:54

















  • Data tags are case sensitive, so that is probably your only problem. Use CustomName instead of customname

    – MBraedley
    Aug 26 '16 at 14:53











  • I tried that tooo

    – Kartik Pillai
    Aug 26 '16 at 14:54
















Data tags are case sensitive, so that is probably your only problem. Use CustomName instead of customname

– MBraedley
Aug 26 '16 at 14:53





Data tags are case sensitive, so that is probably your only problem. Use CustomName instead of customname

– MBraedley
Aug 26 '16 at 14:53













I tried that tooo

– Kartik Pillai
Aug 26 '16 at 14:54





I tried that tooo

– Kartik Pillai
Aug 26 '16 at 14:54










1 Answer
1






active

oldest

votes


















3















/summon armorstand ~ ~1 ~ customname:"text":"hi","color":"aqua




Unless you're using the latest snapshot (in which case it's armor_stand), the name of an armor stand is ArmorStand, case sensitive. NBTags are also case sensitive: it's CustomName rather than customname.



You'll need to add a CustomNameVisible:1b tag to have the name show up. You'd also need to end the quotation mark at the end of "aqua, and escape the whole JSON part, which would end up with a command like this:



/summon ArmorStand ~ ~1 ~ CustomName:""text":"hi","color":"aqua"",CustomNameVisible:1


2019 edit: As of 1.13, CustomNames do now support JSON and the above command will work (changing ID to armor_stand). The information below should be ignored unless you're still on older versions.



However, the main problem is that CustomName's don't yet support JSON.



If you use a third party tool (such as NBTExplorer or MCEdit) you could put the section sign (§) followed by a formatting code before the name to achieve the colour/effect you want. The command (which you cannot input directly into Minecraft) would look like:



/summon ArmorStand ~ ~1 ~ CustomName:"§bhi",CustomNameVisible:1





share|improve this answer

























  • Ok now i get it. Thx for your interest

    – Kartik Pillai
    Aug 26 '16 at 14:56











  • And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

    – MBraedley
    Aug 26 '16 at 14:56











  • Sorry for my mistakes i usually use tab while typing commands

    – Kartik Pillai
    Aug 26 '16 at 14:59











  • "the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

    – pppery
    2 hours ago













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



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f283451%2fsummon-not-working-for-json-text%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









3















/summon armorstand ~ ~1 ~ customname:"text":"hi","color":"aqua




Unless you're using the latest snapshot (in which case it's armor_stand), the name of an armor stand is ArmorStand, case sensitive. NBTags are also case sensitive: it's CustomName rather than customname.



You'll need to add a CustomNameVisible:1b tag to have the name show up. You'd also need to end the quotation mark at the end of "aqua, and escape the whole JSON part, which would end up with a command like this:



/summon ArmorStand ~ ~1 ~ CustomName:""text":"hi","color":"aqua"",CustomNameVisible:1


2019 edit: As of 1.13, CustomNames do now support JSON and the above command will work (changing ID to armor_stand). The information below should be ignored unless you're still on older versions.



However, the main problem is that CustomName's don't yet support JSON.



If you use a third party tool (such as NBTExplorer or MCEdit) you could put the section sign (§) followed by a formatting code before the name to achieve the colour/effect you want. The command (which you cannot input directly into Minecraft) would look like:



/summon ArmorStand ~ ~1 ~ CustomName:"§bhi",CustomNameVisible:1





share|improve this answer

























  • Ok now i get it. Thx for your interest

    – Kartik Pillai
    Aug 26 '16 at 14:56











  • And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

    – MBraedley
    Aug 26 '16 at 14:56











  • Sorry for my mistakes i usually use tab while typing commands

    – Kartik Pillai
    Aug 26 '16 at 14:59











  • "the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

    – pppery
    2 hours ago















3















/summon armorstand ~ ~1 ~ customname:"text":"hi","color":"aqua




Unless you're using the latest snapshot (in which case it's armor_stand), the name of an armor stand is ArmorStand, case sensitive. NBTags are also case sensitive: it's CustomName rather than customname.



You'll need to add a CustomNameVisible:1b tag to have the name show up. You'd also need to end the quotation mark at the end of "aqua, and escape the whole JSON part, which would end up with a command like this:



/summon ArmorStand ~ ~1 ~ CustomName:""text":"hi","color":"aqua"",CustomNameVisible:1


2019 edit: As of 1.13, CustomNames do now support JSON and the above command will work (changing ID to armor_stand). The information below should be ignored unless you're still on older versions.



However, the main problem is that CustomName's don't yet support JSON.



If you use a third party tool (such as NBTExplorer or MCEdit) you could put the section sign (§) followed by a formatting code before the name to achieve the colour/effect you want. The command (which you cannot input directly into Minecraft) would look like:



/summon ArmorStand ~ ~1 ~ CustomName:"§bhi",CustomNameVisible:1





share|improve this answer

























  • Ok now i get it. Thx for your interest

    – Kartik Pillai
    Aug 26 '16 at 14:56











  • And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

    – MBraedley
    Aug 26 '16 at 14:56











  • Sorry for my mistakes i usually use tab while typing commands

    – Kartik Pillai
    Aug 26 '16 at 14:59











  • "the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

    – pppery
    2 hours ago













3












3








3








/summon armorstand ~ ~1 ~ customname:"text":"hi","color":"aqua




Unless you're using the latest snapshot (in which case it's armor_stand), the name of an armor stand is ArmorStand, case sensitive. NBTags are also case sensitive: it's CustomName rather than customname.



You'll need to add a CustomNameVisible:1b tag to have the name show up. You'd also need to end the quotation mark at the end of "aqua, and escape the whole JSON part, which would end up with a command like this:



/summon ArmorStand ~ ~1 ~ CustomName:""text":"hi","color":"aqua"",CustomNameVisible:1


2019 edit: As of 1.13, CustomNames do now support JSON and the above command will work (changing ID to armor_stand). The information below should be ignored unless you're still on older versions.



However, the main problem is that CustomName's don't yet support JSON.



If you use a third party tool (such as NBTExplorer or MCEdit) you could put the section sign (§) followed by a formatting code before the name to achieve the colour/effect you want. The command (which you cannot input directly into Minecraft) would look like:



/summon ArmorStand ~ ~1 ~ CustomName:"§bhi",CustomNameVisible:1





share|improve this answer
















/summon armorstand ~ ~1 ~ customname:"text":"hi","color":"aqua




Unless you're using the latest snapshot (in which case it's armor_stand), the name of an armor stand is ArmorStand, case sensitive. NBTags are also case sensitive: it's CustomName rather than customname.



You'll need to add a CustomNameVisible:1b tag to have the name show up. You'd also need to end the quotation mark at the end of "aqua, and escape the whole JSON part, which would end up with a command like this:



/summon ArmorStand ~ ~1 ~ CustomName:""text":"hi","color":"aqua"",CustomNameVisible:1


2019 edit: As of 1.13, CustomNames do now support JSON and the above command will work (changing ID to armor_stand). The information below should be ignored unless you're still on older versions.



However, the main problem is that CustomName's don't yet support JSON.



If you use a third party tool (such as NBTExplorer or MCEdit) you could put the section sign (§) followed by a formatting code before the name to achieve the colour/effect you want. The command (which you cannot input directly into Minecraft) would look like:



/summon ArmorStand ~ ~1 ~ CustomName:"§bhi",CustomNameVisible:1






share|improve this answer














share|improve this answer



share|improve this answer








edited 1 hour ago

























answered Aug 26 '16 at 14:54









SirBenetSirBenet

25.5k3 gold badges50 silver badges80 bronze badges




25.5k3 gold badges50 silver badges80 bronze badges












  • Ok now i get it. Thx for your interest

    – Kartik Pillai
    Aug 26 '16 at 14:56











  • And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

    – MBraedley
    Aug 26 '16 at 14:56











  • Sorry for my mistakes i usually use tab while typing commands

    – Kartik Pillai
    Aug 26 '16 at 14:59











  • "the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

    – pppery
    2 hours ago

















  • Ok now i get it. Thx for your interest

    – Kartik Pillai
    Aug 26 '16 at 14:56











  • And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

    – MBraedley
    Aug 26 '16 at 14:56











  • Sorry for my mistakes i usually use tab while typing commands

    – Kartik Pillai
    Aug 26 '16 at 14:59











  • "the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

    – pppery
    2 hours ago
















Ok now i get it. Thx for your interest

– Kartik Pillai
Aug 26 '16 at 14:56





Ok now i get it. Thx for your interest

– Kartik Pillai
Aug 26 '16 at 14:56













And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

– MBraedley
Aug 26 '16 at 14:56





And this is why I didn't provide a full answer. You can assign the armor stand to a team in order to color the name, though.

– MBraedley
Aug 26 '16 at 14:56













Sorry for my mistakes i usually use tab while typing commands

– Kartik Pillai
Aug 26 '16 at 14:59





Sorry for my mistakes i usually use tab while typing commands

– Kartik Pillai
Aug 26 '16 at 14:59













"the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

– pppery
2 hours ago





"the latest snapshot" is now a three-year-old version, and Minecraft 1.13 and newer version do support JSON in CustomName. Perhaps you should update this answer.

– pppery
2 hours ago

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f283451%2fsummon-not-working-for-json-text%23new-answer', 'question_page');

);

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







Popular posts from this blog

Sahara Skak | Bilen | Luke uk diar | NawigatsjuunCommonskategorii: SaharaWikivoyage raisfeerer: Sahara26° N, 13° O

The fall designs the understood secretary. Looking glass Science Shock Discovery Hot Everybody Loves Raymond Smile 곳 서비스 성실하다 Defas Kaloolon Definition: To combine or impregnate with sulphur or any of its compounds as to sulphurize caoutchouc in vulcanizing Flame colored Reason Useful Thin Help 갖다 유명하다 낙엽 장례식 Country Iron Definition: A fencer a gladiator one who exhibits his skill in the use of the sword Definition: The American black throated bunting Spiza Americana Nostalgic Needy Method to my madness 시키다 평가되다 전부 소설가 우아하다 Argument Tin Feeling Representative Gym Music Gaur Chicken 일쑤 코치 편 학생증 The harbor values the sugar. Vasagle Yammoe Enstatite Definition: Capable of being limited Road Neighborly Five Refer Built Kangaroo 비비다 Degree Release Bargain Horse 하루 형님 유교 석 동부 괴롭히다 경제력

19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу