So i've seen in a couple videos, SethBling and Dragnoz in particular, that you are able to have writeen books with click-able commands in them. I've looked, I've tinkered, and I can't figure out how to do it or where to start.
other than you have to spawn them in with Command blocks, I'm clueless.
Please, Minecraft Gods of the Red Stone, help me out here.
The easiest way to do this would be with thing website, it will help you generate tellraw, titles, subtitles, signs, executes and most importantly for your needs, books as well.
We'd greatly appreciate an exact copy of your code. Otherwise, we are unable to help.
As is from the generator. Please ignore the Draconic Text
/give @a written_book 1 0 {pages:["{\"text\":\"\",\"extra\":[{\"text\":\" I \",\"color\":\"black\",\"bold\":\"true\",\"italic\":\"true\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/gamemode survival @p\"}},{\"text\":\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/gamemode survival @p\"}},{\"text\":\"Skjall Vunal.\",\"color\":\"dark_green\",\"bold\":\"true\",\"italic\":\"true\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/tp @p 0 65 0\"},\"hoverEvent\":{\"action\":\"show_text\",\"value\":\"Teleport\"}}]}"]}
As is from the generator. Please ignore the Draconic Text
/give @a written_book 1 0 {pages:["{\"text\":\"\",\"extra\":[{\"text\":\" I \",\"color\":\"black\",\"bold\":\"true\",\"italic\":\"true\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/gamemode survival @p\"}},{\"text\":\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/gamemode survival @p\"}},{\"text\":\"Skjall Vunal.\",\"color\":\"dark_green\",\"bold\":\"true\",\"italic\":\"true\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/tp @p 0 65 0\"},\"hoverEvent\":{\"action\":\"show_text\",\"value\":\"Teleport\"}}]}"]}
Such messy text... It's making my eyes bleed a little...
Anyway, I managed to fix up your code, which was a mess of quotation and unnecessary escaping.
/give @a written_book 1 0 {pages:["{text:\"\",extra:[{text:\" I \",color:black,bold:true,italic:true,clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Skjall Vunal.\",color:dark_green,bold:true,italic:true,clickEvent:{action:run_command,value:\"/tp @p 0 65 0\"},hoverEvent:{action:show_text,value:\"Teleport\"}}]}"]}
I intend on having a book that, progressively, has more commands on each page. E.I.:
I start the game with volume 1. Volume 1 has text, then a command line. After the first dungeon, I "Sacrifice" the volume in a chest, and I get Volume 2, which has an additional Page and command line. And so on and so forth.
I do not understand the json method of text, and and I use the generator to make up the commands in different colors and boldness and stuff.
So how is the easiest way to do this? And where and how in the line of text can I copy/paste the command lines of the generated text that I know how to make?
I intend on having a book that, progressively, has more commands on each page. E.I.:
I start the game with volume 1. Volume 1 has text, then a command line. After the first dungeon, I "Sacrifice" the volume in a chest, and I get Volume 2, which has an additional Page and command line. And so on and so forth.
I do not understand the json method of text, and and I use the generator to make up the commands in different colors and boldness and stuff.
So how is the easiest way to do this? And where and how in the line of text can I copy/paste the command lines of the generated text that I know how to make?
I don't speak code though. I seriously have no idea how syntax or json works.Also, slight topic, where in this previous code can I put in the title of the book? Rather than just 'written book'?
I don't speak code though. I seriously have no idea how syntax or json works.
Also, slight topic, where in this previous code can I put in the title of the book? Rather than just 'written book'?
Just apply the tag title to the book. This code is from four posts above this one, I assume it is functional.
/give @a written_book 1 0 {title:"TITLE OF BOOK",author:"BY BLANK",pages:["{text:\"\",extra:[{text:\" I \",color:black,bold:true,italic:true,clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Skjall Vunal.\",color:dark_green,bold:true,italic:true,clickEvent:{action:run_command,value:\"/tp @p 0 65 0\"},hoverEvent:{action:show_text,value:\"Teleport\"}}]}"]}
The purpose of the link is to make you understand how syntax or json works. I suggest giving it a crack, it's not hard. Just takes a bit of practice, that's all.
Just apply the tag title to the book. This code is from two posts above this one, I assume it is functional.
/give @a written_book 1 0 {title:"TITLE OF BOOK",author:"BY BLANK",pages:["{text:\"\",extra:[{text:\" I \",color:black,bold:true,italic:true,clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Skjall Vunal.\",color:dark_green,bold:true,italic:true,clickEvent:{action:run_command,value:\"/tp @p 0 65 0\"},hoverEvent:{action:show_text,value:\"Teleport\"}}]}"]}
The purpose of the link is to make you understand how syntax or json works. I suggest giving it a crack, it's not hard. Just takes a bit of practice, that's all.
other than you have to spawn them in with Command blocks, I'm clueless.
Please, Minecraft Gods of the Red Stone, help me out here.
Back from the End, time to rebuild.
I looked at the website, but any time I try to type in something like /gamemode 1, it blanks itself out. Any places that can tell me how to use this?
Back from the End, time to rebuild.
-
View User Profile
-
View Posts
-
Send Message
Retired StaffThere's the forum post for the generator here that you can ask questions in: http://www.minecraftforum.net/topic/1980545-website-to-generate-tellraw-commands/
I also have a thread detailing how to use the JSON text component in /tellraw, /title, books, and signs here if needed: http://www.minecraftforum.net/topic/1975697-1718-raw-json-text-examples-for-tellraw-title-books-signs-update14w25a/
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
Back from the End, time to rebuild.
We'd greatly appreciate an exact copy of your code. Otherwise, we are unable to help.
As is from the generator. Please ignore the Draconic Text
/give @a written_book 1 0 {pages:["{\"text\":\"\",\"extra\":[{\"text\":\" I \",\"color\":\"black\",\"bold\":\"true\",\"italic\":\"true\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/gamemode survival @p\"}},{\"text\":\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/gamemode survival @p\"}},{\"text\":\"Skjall Vunal.\",\"color\":\"dark_green\",\"bold\":\"true\",\"italic\":\"true\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/tp @p 0 65 0\"},\"hoverEvent\":{\"action\":\"show_text\",\"value\":\"Teleport\"}}]}"]}
Back from the End, time to rebuild.
-
View User Profile
-
View Posts
-
Send Message
Retired StaffYou'd just follow the standard format for books:
{ pages:[ "page 1", "page 2", "page 3" ] }/give @a written_book 1 0 { pages:[ "{ text:\"\", extra:[ { text:\" I \", color:black, bold:true, italic:true, clickEvent:{ action:run_command, value:\"/gamemode survival @p\" } }, { text:\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \", clickEvent:{ action:run_command, value:\"/gamemode survival @p\" } }, { text:\"Skjall Vunal.\", color:dark_green, bold:true, italic:true, clickEvent:{ action:run_command, value:\"/tp @p 0 65 0\" }, hoverEvent:{ action:show_text, value:\"Teleport\" } } ] }", "page 2" ] }Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
Such messy text... It's making my eyes bleed a little...
Anyway, I managed to fix up your code, which was a mess of quotation and unnecessary escaping.
/give @a written_book 1 0 {pages:["{text:\"\",extra:[{text:\" I \",color:black,bold:true,italic:true,clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Skjall Vunal.\",color:dark_green,bold:true,italic:true,clickEvent:{action:run_command,value:\"/tp @p 0 65 0\"},hoverEvent:{action:show_text,value:\"Teleport\"}}]}"]}I intend on having a book that, progressively, has more commands on each page. E.I.:
I start the game with volume 1. Volume 1 has text, then a command line. After the first dungeon, I "Sacrifice" the volume in a chest, and I get Volume 2, which has an additional Page and command line. And so on and so forth.
I do not understand the json method of text, and and I use the generator to make up the commands in different colors and boldness and stuff.
So how is the easiest way to do this? And where and how in the line of text can I copy/paste the command lines of the generated text that I know how to make?
Back from the End, time to rebuild.
This thread has all the answers: http://www.minecraftforum.net/topic/1975697-1718-raw-json-text-examples-for-tellraw-title-books-signs-update14w25a/
I don't speak code though. I seriously have no idea how syntax or json works.Also, slight topic, where in this previous code can I put in the title of the book? Rather than just 'written book'?
Back from the End, time to rebuild.
Just apply the tag title to the book. This code is from four posts above this one, I assume it is functional.
/give @a written_book 1 0 {title:"TITLE OF BOOK",author:"BY BLANK",pages:["{text:\"\",extra:[{text:\" I \",color:black,bold:true,italic:true,clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Kwi ekess thee, bender di wer relgimi, tiric nomeno tome wielg sari dout cha'sidic. Jalla wux sweekmon ekik wer irthir di wer zezhuanthi, tlush dout gogetoi sva \",clickEvent:{action:run_command,value:\"/gamemode survival @p\"}},{text:\"Skjall Vunal.\",color:dark_green,bold:true,italic:true,clickEvent:{action:run_command,value:\"/tp @p 0 65 0\"},hoverEvent:{action:show_text,value:\"Teleport\"}}]}"]}The purpose of the link is to make you understand how syntax or json works. I suggest giving it a crack, it's not hard. Just takes a bit of practice, that's all.
Fair enough.
Back from the End, time to rebuild.