RedStone Books

Quick rating

RedStone Books

No reviews yet

Redstone Books adds a cinematic book GUI system configurable by JSON with animations, voice, and custom layout. Perfect for maps, RPGs, and story mods. Requires a resourcepack for textures and sounds.

Adventure/Exploration
QoL & Tweaks
Storage & Organization
API/Library
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Where It Runs
Client and Server

Must be installed on both the client and the server.

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
redstonebooks-1.2.0.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

About

Description

📖 Redstone Books

logo.png

A cinematic, JSON-driven book system for Minecraft Forge 1.20.1.

🎬 Preview

Preview

68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d696e6563726166742d312e32302e312d627269676874677265656e 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6f616465722d466f7267652d626c7565 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f56657273696f6e2d312e322e302d6f72616e6765 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5374617475732d537461626c652d73756363657373

🇬🇧 Cinematic book system for Minecraft
🇪🇸 Sistema de libros cinematográficos para Minecraft


Banner

✨ Overview

Redstone Books is a lightweight Forge mod that allows creators to build fully cinematic books using JSON configuration.

Perfect for:

  • 🎬 Cinematics
  • 🧭 RPG adventures
  • 🗺️ Custom maps
  • 🌍 Multiplayer servers
  • 📜 Story-driven mods
  • 🧱 Datapacks

🚀 Features

  • 📖 Frame-by-frame opening animation
  • 🔊 Voice narration per page
  • ✍️ Typewriter effect
  • 🎨 Fully configurable layouts
  • 🌫️ Fade transitions
  • 📚 Multiple books support
  • 🧠 JSON-driven configuration
  • 🎮 HUD and input control
  • 🌐 Dedicated server support
  • 👥 Multiplayer synchronization

📦 Installation

Install Forge 1.20.1

Client:

.minecraft/mods/
 

Server:

server/mods/
 

Launch Minecraft.


🎮 Commands

Command Description
/redstonebook open <book> Opens a book for yourself.
/redstonebook open <book> <player> Opens a book for a specific player.
/redstonebook open <book> @a Opens a book for all connected players.

Example:

/redstonebook open guardian
 

📁 Book Structure

Book definitions are stored on the server:

config/redstonebooks/books/<id>.json
 

Resources (textures, animations and audio) are provided by the client resource pack:

assets/redstonebooks/
├── textures/books/<id>/
└── sounds/books/<id>/
 

🌐 Multiplayer Architecture

  • 📚 Books are loaded from the server.
  • 📡 The server synchronizes book data to clients.
  • 🖼️ Images, animations and audio are loaded locally from the resource pack.
  • ✅ Ensures every player always receives the latest version of every book.

🧪 Ejemplo de JSON

{
  "id": "guardian",
  "meta": {
    "title": "CRÓNICAS DEL GUARDIÁN"
  },
  "theme": {
    "folder": "guardian"
  },
  "animation": {
    "enabled": true,
    "folder": "anim",
    "frameCount": 143,
    "frameRate": 1
  },
  "assets": {
    "cover": "book_cover.png",
    "reading": "book_reading.png"
  },
  "options": {
    "hideHud": true,
    "lockInput": true,
    "autoAdvance": true,
    "pageTurnTicks": 8,
    "showPageIndicator": true
  },
  "style": {
    "textScale": 1.0,
    "align": "LEFT",
    "lineSpacing": 1,
    "textColor": "#1E1A16",
    "textShadow": false
  },
  "typewriter": {
    "enabled": true,
    "charsPerTick": 2,
    "startDelay": 10
  },
  "layout": {
    "mode": "book",
    "openBookWidth": 0.74,
    "openBookHeight": 0.74,
    "textStartX": 0.55,
    "textStartY": 0.14,
    "textWidth": 0.30,
    "textHeight": 0.60
  },
  "transition": {
    "useFadeBetweenAnimationAndReading": true,
    "fadeOutTicks": 18,
    "blackHoldTicks": 8,
    "fadeInTicks": 20
  },
  "pages": [
    {
      "durationTicks": 200,
      "text": "Texto de ejemplo",
      "voiceSound": "redstonebooks:books.guardian.guardian_p1",
      "voiceVolume": 1.0,
      "voicePitch": 1.0
    }
  ]
}
 

🎵 Sonido

Ejemplo de sounds.json:

{
  "books.guardian.guardian_p1": {
    "sounds": [
      {
        "name": "books/guardian/guardian_p1",
        "stream": true
      }
    ]
  }
}
 

🧪 Testing

/playsound redstonebooks:books.guardian.guardian_p1 master @p
 

📸 Showcase

Showcase


📄 License

All Rights Reserved


📜 Changelog

🆕 v1.2.0

  • 🌐 Dedicated server support.
  • 📡 Network synchronization between server and clients.
  • 📚 Books are loaded directly from the server.
  • 👥 Support for opening books for specific players or all connected players.
  • 🛠 Fixed dedicated server crash caused by client-only classes.

🆕 v1.1.0

  • 🎞 Fixed animation issues (pink/black textures).
  • 📖 New modular book structure.
  • 🔊 Fully functional audio system.

🚀 v1.0.0

  • 📚 Base cinematic book system.
  • ⚙ JSON configuration.
  • 📄 Multi-page support.
  • ✨ Text rendering and visual effects.
  • 🔊 Initial audio system.

⚖️ License

All Rights Reserved

Title

📖 Redstone Books

preview

📋Summary

Create cinematic animated books in Minecraft with text, voice and transitions — fully configurable via JSON.

Perfect for RPG maps, cinematics and story-driven content.

🎬Video

🛠️ What can you build?

  • Story-driven cinematics
  • RPG quest narration
  • Intro sequences
  • Lore books
  • Immersive storytelling systems

🎯 What you can create

  • Intro cinematics
  • Quest narration
  • Story cutscenes
  • Lore books
  • Interactive storytelling

ℹ️ Upload Info

  • Version: 1.1.0
  • Game Version: 1.20.1
  • Loader: Forge
  • Release Type: Release

Tags / Categories

  • Adventure
  • API / Library
  • Utility
  • RPG

Media Checklist

  • Logo (docs/logo.png)
  • Banner (docs/banner.png)
  • Showcase (docs/showcase.png)
  • Video (recommended)

Notes

⚠️ Requires resourcepack for textures and sounds
⚠️ New structure may break old packs

⚖️ License

All Rights Reserved

Screenshots

Gallery

  • Banner
    Banner banner
  • Command
    Command Set the command to open the book
  • Opening the book
    Opening the book Open the book automatically
  • Captura de pantalla 2026-03-13 071701.png
    Captura de pantalla 2026-03-13 071701.png Captura de pantalla 2026-03-13 071701.png
  • Writting and playing sound
    Writting and playing sound Writting and playing sound (voice must be pre-recorded)
  • Showcase
    Showcase Showcase
  • Logo
    Logo Logo
  • Insert command
    Insert command Insert command to open the book
  • Open book
    Open book The book will display the animation opening a book automatically
  • Banner
    Banner Banner
  • The animation can be configurated into json file
    The animation can be configurated into json file
  • Showcase
    Showcase
  • Text writting
    Text writting The text will be displayed and configurated by json file, and sound (pre-recorded) will be played.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works