A cinematic, JSON-driven book system for Minecraft Forge 1.20.1.
🇬🇧 Cinematic book system for Minecraft
🇪🇸 Sistema de libros cinematográficos para Minecraft
Redstone Books is a lightweight Forge mod that allows creators to build fully cinematic books using JSON configuration.
Perfect for:
Install Forge 1.20.1
Client:
.minecraft/mods/
Server:
server/mods/
Launch Minecraft.
| 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 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>/
{
"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
}
]
}
Ejemplo de sounds.json:
{
"books.guardian.guardian_p1": {
"sounds": [
{
"name": "books/guardian/guardian_p1",
"stream": true
}
]
}
}
/playsound redstonebooks:books.guardian.guardian_p1 master @p
All Rights Reserved
All Rights Reserved