Started by
Sfw_mage
on
Topic category: Help with Minecraft modding (Java Edition)
So I'm trying to make a mod that allows me to write large amounts of text on a single page of a book(I know I cant do this on vanilla books). How would I go about on creating a custom book that allows large amount of text to be written in it? The version is 1.19.4 if this helps any.
This will probably involve a lot of weird workarounds- the proper way to do this would be to custom code a system that references text files included with your mod, like how the End Poem and Credits work. But if you want to try using Mcreator's built in systems, I recommend something like this:
Essentially, your book items, (which I assume are pre-written), will have a custom GUI that references NBT tags of the book item, which in turn reference the mod's localization.
If you actually want a book interface you can write in, that's going to be substantially more difficult, and will certainly require custom code.