How do I make floating text? ((1.13)) The Next CEO of Stack OverflowFloating text with more than one lineScoreboard value in floating textMinecraft: How do I give a villager trades with custom NBT tagsIssue with custom villager trading custom itemsCan you have both Attribute modifiers and displays on an item?How can I summon a villager that sells spawners for mobs other than the default Pig?Random item dropsHow do I make floating text?Armor stand help! Minecraft 1.13How to create an “impact grenade” in Minecraft 1.13?
How do I solve this limit?
Why didn't Khan get resurrected in the Genesis Explosion?
How do we know the LHC results are robust?
How to safely derail a train during transit?
How long to clear the 'suck zone' of a turbofan after start is initiated?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Can a single photon have an energy density?
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
Does the Brexit deal have to be agreed by both Houses?
How to count occurrences of text in a file?
Why is there a PLL in CPU?
Whats the best way to handle refactoring a big file?
Why do professional authors make "consistency" mistakes? And how to avoid them?
What is the point of a new vote on May's deal when the indicative votes suggest she will not win?
Is a stroke of luck acceptable after a series of unfavorable events?
Only print output after finding pattern
Grabbing quick drinks
How to write the block matrix in LaTex?
Rotate a column
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Why is Miller's case titled R (Miller)?
How should I support this large drywall patch?
Why does GHC infer a monomorphic type here, even with MonomorphismRestriction disabled?
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
How do I make floating text? ((1.13))
The Next CEO of Stack OverflowFloating text with more than one lineScoreboard value in floating textMinecraft: How do I give a villager trades with custom NBT tagsIssue with custom villager trading custom itemsCan you have both Attribute modifiers and displays on an item?How can I summon a villager that sells spawners for mobs other than the default Pig?Random item dropsHow do I make floating text?Armor stand help! Minecraft 1.13How to create an “impact grenade” in Minecraft 1.13?
How does one put floating text like that of servers that utilize plugins to do so? I know you used to be able to do it with earlier than 1.13 with /summon ArmorStandInvulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:"text":"Blocks","color":"yellow","bold",:"true" ~ ~ ~, but with the 1.13 update they changed the syntax of this and other commands.
Originally, I tried to "fix it", despite not having ran it, by moving the NBT tags to armor_stand (since ArmorStand didn't exist anymore), but that failed. When I brought it back to the beginning and it summon the object without the custom name either being visible or without having a custom name at all. Which one of those is the issue, however, I'm not sure of.
minecraft minecraft-commands
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
How does one put floating text like that of servers that utilize plugins to do so? I know you used to be able to do it with earlier than 1.13 with /summon ArmorStandInvulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:"text":"Blocks","color":"yellow","bold",:"true" ~ ~ ~, but with the 1.13 update they changed the syntax of this and other commands.
Originally, I tried to "fix it", despite not having ran it, by moving the NBT tags to armor_stand (since ArmorStand didn't exist anymore), but that failed. When I brought it back to the beginning and it summon the object without the custom name either being visible or without having a custom name at all. Which one of those is the issue, however, I'm not sure of.
minecraft minecraft-commands
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
How does one put floating text like that of servers that utilize plugins to do so? I know you used to be able to do it with earlier than 1.13 with /summon ArmorStandInvulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:"text":"Blocks","color":"yellow","bold",:"true" ~ ~ ~, but with the 1.13 update they changed the syntax of this and other commands.
Originally, I tried to "fix it", despite not having ran it, by moving the NBT tags to armor_stand (since ArmorStand didn't exist anymore), but that failed. When I brought it back to the beginning and it summon the object without the custom name either being visible or without having a custom name at all. Which one of those is the issue, however, I'm not sure of.
minecraft minecraft-commands
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
How does one put floating text like that of servers that utilize plugins to do so? I know you used to be able to do it with earlier than 1.13 with /summon ArmorStandInvulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:"text":"Blocks","color":"yellow","bold",:"true" ~ ~ ~, but with the 1.13 update they changed the syntax of this and other commands.
Originally, I tried to "fix it", despite not having ran it, by moving the NBT tags to armor_stand (since ArmorStand didn't exist anymore), but that failed. When I brought it back to the beginning and it summon the object without the custom name either being visible or without having a custom name at all. Which one of those is the issue, however, I'm not sure of.
minecraft minecraft-commands
minecraft minecraft-commands
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 29 mins ago
EarthToAccessEarthToAccess
12
12
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
EarthToAccess is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
First error: coordinates go in between the entity name and the nbt.
Second error: the Custom Name needs quotations enveloping the brackets with the name data.
Third mistake: Each quotation within the said brackets must have a backslash before it. Plus, there was a typo in front of "bold" in the command sample you gave us.
A working command:
summon armor_stand ~ ~ ~ Invulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:""text":"Blocks","color":"yellow","bold":"true""
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
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
);
);
EarthToAccess is a new contributor. Be nice, and check out our Code of Conduct.
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%2f348334%2fhow-do-i-make-floating-text-1-13%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 error: coordinates go in between the entity name and the nbt.
Second error: the Custom Name needs quotations enveloping the brackets with the name data.
Third mistake: Each quotation within the said brackets must have a backslash before it. Plus, there was a typo in front of "bold" in the command sample you gave us.
A working command:
summon armor_stand ~ ~ ~ Invulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:""text":"Blocks","color":"yellow","bold":"true""
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
add a comment |
First error: coordinates go in between the entity name and the nbt.
Second error: the Custom Name needs quotations enveloping the brackets with the name data.
Third mistake: Each quotation within the said brackets must have a backslash before it. Plus, there was a typo in front of "bold" in the command sample you gave us.
A working command:
summon armor_stand ~ ~ ~ Invulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:""text":"Blocks","color":"yellow","bold":"true""
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
add a comment |
First error: coordinates go in between the entity name and the nbt.
Second error: the Custom Name needs quotations enveloping the brackets with the name data.
Third mistake: Each quotation within the said brackets must have a backslash before it. Plus, there was a typo in front of "bold" in the command sample you gave us.
A working command:
summon armor_stand ~ ~ ~ Invulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:""text":"Blocks","color":"yellow","bold":"true""
First error: coordinates go in between the entity name and the nbt.
Second error: the Custom Name needs quotations enveloping the brackets with the name data.
Third mistake: Each quotation within the said brackets must have a backslash before it. Plus, there was a typo in front of "bold" in the command sample you gave us.
A working command:
summon armor_stand ~ ~ ~ Invulnerable:1b,NoGravity:1b,Invisible:1b,CustomNameVisible:1b,CustomName:""text":"Blocks","color":"yellow","bold":"true""
answered 20 mins ago
SpiceWeaselSpiceWeasel
7761514
7761514
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
add a comment |
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
Oh, I dislike those pesky backslashes. Thank you very much! Once the two minute mark hits, I'll mark best answer.
– EarthToAccess
17 mins ago
add a comment |
EarthToAccess is a new contributor. Be nice, and check out our Code of Conduct.
EarthToAccess is a new contributor. Be nice, and check out our Code of Conduct.
EarthToAccess is a new contributor. Be nice, and check out our Code of Conduct.
EarthToAccess is a new contributor. Be nice, and check out our Code of Conduct.
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%2f348334%2fhow-do-i-make-floating-text-1-13%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