Jump to content

NBT Missing Text


Taskkill

Recommended Posts

The problem happens when I create my custom Written Book.

This is my book builder.

public static class BookBuilder {
		
		NBTTagList pages = new NBTTagList();
		NBTTagCompound nbt = new NBTTagCompound();
		
		public BookBuilder(String title) {
			this.setTitle(title);
		}
		
		public BookBuilder addPage(String content) {
			pages.appendTag(new NBTTagString(content));
			return this;
		}
		
		public BookBuilder setTitle(String title) {
			nbt.setString("title", title);
			return this;
		}
		
		public BookBuilder setAuthor(String author) {
			nbt.setString("author", author);
			return this;
		}
		
		public ItemStack toBook() {
			ItemStack book = new ItemStack(Items.WRITTEN_BOOK);
			nbt.setTag("pages", pages);
			book.setTagCompound(nbt);
			return book;
		}
		
	}

And use it to create a ItemStack.

ItemStack book = new WrittenBookHelper.BookBuilder(I18n.format("item.LeeroyJenkins.meme.title"))
						.setAuthor("Taskeren")
						.addPage(I18n.format("item.LeeroyJenkins.meme.0"))
						.addPage(I18n.format("item.LeeroyJenkins.meme.1"))
						.toBook();

Result is that I got a book with only the text before the first space.

For example, 

item.LeeroyJenkins.meme.1=在炉石传说中,卡牌描述的内容为“At least we got Angry Chicken(至少我们还有愤怒的小鸡)”以及繁体中文中的火车王叫做“炸鸡勇者”。

The book can only have

在炉石传说中,卡牌描述的内容为“At

 

Missing the text after the first space.

Is there a better BookBuilder? Or how can I let it works as I expect?

Finally, please excuse my poor English.

Edited by Taskkill
Link to comment
Share on other sites

Someone's been meming around with Leeroy ; )

 

As far as I know (correct me if I'm wrong), the NBT structure of pages in a book is not simply a list of strings.

 

The page structures in the NBT of a written book is something like:

["{\"text\":\"Text on page 1\"}", "{\"text\":\"Text on page 2\"}"]

As you can see, the page structures are similar to that of a json object, but represented in the form of a string.

Therefore, instead of just appending the content to the NBT list, try adding strings in the format shown above.

The code should be something like:

nbtList.add(new NBTTagString(String.format("{\"text\":\"%s\"}", pageText))); // Adds a page to the book. "pageText" specifies the text on the page.

 

I am pretty sure there are other alternatives, with which I'm not familiar, to creating a written book; however, I cannot name any on the spot. Sorry.

 

P.S. 兄弟看逗鱼时刻吗?;)

Edited by DavidM

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

5 minutes ago, DavidM said:

Someone's been meming around with Leeroy ; )

 

As far as I know (correct me if I'm wrong), the NBT structure of pages in a book is not simply a list of strings.

 

The page structures in the NBT of a written book is something like:


["{\"text\":\"Text on page 1\"}", "{\"text\":\"Text on page 2\"}"]

As you can see, the page structures are similar to that of a json object, but represented in the form of strings.

Therefore, instead of just appending the content to the NBT list, try adding strings in the format shown above.


nbtList.add(String.format("{\"text\":\"%s\"}", pageText)); // Adds a page to the book. "pageText" specifies the text on the page.

 

I am pretty sure there are alternatives to creating a written book by manually adding NBTs, but I don't really know any. Sorry.

 

P.S. 兄弟看逗鱼时刻吗?;)

You're right, thanks!

(看啊,交个朋友?)

  • Haha 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.