{"id":137797,"date":"2026-06-08T06:35:58","date_gmt":"2026-06-08T03:35:58","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/"},"modified":"2026-06-08T06:35:58","modified_gmt":"2026-06-08T03:35:58","slug":"setsumeisho","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/","title":{"rendered":"Setsumeisho"},"content":{"rendered":"<p># Setsumeisho<\/p>\n<p>A Minecraft mod that displays in-game instruction overlays to players, designed for minigames and events. The server sends instruction screens to clients showing controls, descriptions, and timers \u2014 with optional auto-translation, cinematic sequences, and keyboard icon rendering.<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>&#8211; Instruction overlay with title, subtitle, controls, and description sections<br \/>\n&#8211; Custom keyboard\/icon font rendered inside the overlay<br \/>\n&#8211; Per-language content: each instruction file supports multiple `lang` entries (`es`, `en`, etc.)<br \/>\n&#8211; Auto-translation via the MyMemory API (optional)<br \/>\n&#8211; Pre-translation cache so players receive content in their language on open<br \/>\n&#8211; Minimize\/restore animation via a post-process shader<br \/>\n&#8211; Timer display with configurable countdown<br \/>\n&#8211; Cinematic support: run console commands on a schedule when an instruction opens<br \/>\n&#8211; Background texture support sent from server to client<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>1. Place the mod JAR in the `mods\/` folder.<br \/>\n2. Start the server once to generate the default configuration file at `config\/setsumeisho\/default.json`.<\/p>\n<p>&#8212;<\/p>\n<p>## Commands<\/p>\n<p>All commands require operator permissions (level 2+).<\/p>\n<p>| Command | Description |<br \/>\n|&#8212;|&#8212;|<br \/>\n| `\/setsumeisho open <file>` | Opens the named instruction screen for the executing player |<br \/>\n| `\/setsumeisho open <file> <player>` | Opens the instruction screen for a specific player |<br \/>\n| `\/setsumeisho close` | Closes the currently open instruction overlay |<br \/>\n| `\/setsumeisho create <name>` | Creates a new template JSON file at `config\/setsumeisho\/<name>.json` |<br \/>\n| `\/setsumeisho pretranslate <file>` | Pre-translates the instruction file and caches the result |<\/p>\n<p>&#8212;<\/p>\n<p>## Configuration<\/p>\n<p>All instruction files live in `config\/setsumeisho\/`. Each file is a JSON array with three objects: the **language entries**, the **config block**, and the **cinematics block**.<\/p>\n<p>### Structure<\/p>\n<p>&#8220;`json<br \/>\n[<br \/>\n  {<br \/>\n    &#8220;lang&#8221;: &#8220;es&#8221;,<br \/>\n    &#8220;title&#8221;: &#8220;T\u00cdTULO&#8221;,<br \/>\n    &#8220;subtitle&#8221;: &#8220;Subt\u00edtulo&#8221;,<br \/>\n    &#8220;title_controls&#8221;: &#8220;Controles Especiales&#8221;,<br \/>\n    &#8220;title_description&#8221;: &#8220;Instrucciones&#8221;,<br \/>\n    &#8220;controls&#8221;: [<br \/>\n      &#8220;[[ICON:LEFT_CLICK]] Descripci\u00f3n del control.&#8221;,<br \/>\n      &#8220;[[ICON:SPACE]] Otro control.&#8221;<br \/>\n    ],<br \/>\n    &#8220;description&#8221;: &#8220;Descripci\u00f3n del objetivo del minijuego.&#8221;<br \/>\n  },<br \/>\n  {<br \/>\n    &#8220;lang&#8221;: &#8220;en&#8221;,<br \/>\n    &#8220;title&#8221;: &#8220;TITLE&#8221;,<br \/>\n    &#8220;subtitle&#8221;: &#8220;Subtitle&#8221;,<br \/>\n    &#8220;title_controls&#8221;: &#8220;Special Controls&#8221;,<br \/>\n    &#8220;title_description&#8221;: &#8220;Instructions&#8221;,<br \/>\n    &#8220;controls&#8221;: [<br \/>\n      &#8220;[[ICON:LEFT_CLICK]] Control description.&#8221;,<br \/>\n      &#8220;[[ICON:SPACE]] Another control.&#8221;<br \/>\n    ],<br \/>\n    &#8220;description&#8221;: &#8220;Minigame objective description.&#8221;<br \/>\n  },<br \/>\n  {<br \/>\n    &#8220;config&#8221;: {<br \/>\n      &#8220;timer&#8221;: &#8220;00:00:10&#8221;,<br \/>\n      &#8220;minimize_scale&#8221;: [0.36, 0.356],<br \/>\n      &#8220;minimize_position&#8221;: [0.57, 0.395],<br \/>\n      &#8220;title_pos&#8221;: [0.5, 0.08],<br \/>\n      &#8220;subtitle_pos&#8221;: [0.5, 0.15],<br \/>\n      &#8220;title_controls_pos&#8221;: [0.02, 0.2],<br \/>\n      &#8220;controls_pos&#8221;: [0.5, 0.25],<br \/>\n      &#8220;title_description_pos&#8221;: [0.02, 0.65],<br \/>\n      &#8220;description_pos&#8221;: [0.05, 0.7],<br \/>\n      &#8220;title_scale&#8221;: 4.0,<br \/>\n      &#8220;subtitle_scale&#8221;: 3.0,<br \/>\n      &#8220;title_controls_scale&#8221;: 1.6,<br \/>\n      &#8220;controls_scale&#8221;: 1.6,<br \/>\n      &#8220;title_description_scale&#8221;: 1.6,<br \/>\n      &#8220;description_scale&#8221;: 1.6,<br \/>\n      &#8220;timer_pos&#8221;: [0.5, 0.01],<br \/>\n      &#8220;timer_scale&#8221;: 1.45<br \/>\n    }<br \/>\n  },<br \/>\n  {<br \/>\n    &#8220;cinematics&#8221;: {<br \/>\n      &#8220;commands&#8221;: [<br \/>\n        &#8220;console_command: cam-server start wawa @a 10s&#8221;,<br \/>\n        &#8220;wait: 10s&#8221;,<br \/>\n        &#8220;console_command: say La cinem\u00e1tica ha finalizado.&#8221;<br \/>\n      ]<br \/>\n    }<br \/>\n  }<br \/>\n]<br \/>\n&#8220;`<\/p>\n<p>### Language entries<\/p>\n<p>| Field | Description |<br \/>\n|&#8212;|&#8212;|<br \/>\n| `lang` | Language code (`es`, `en`, etc.) \u2014 matched to the client&#8217;s language setting |<br \/>\n| `title` | Main title shown at the top of the overlay |<br \/>\n| `subtitle` | Subtitle shown below the title |<br \/>\n| `title_controls` | Section header for the controls list |<br \/>\n| `controls` | Array of control descriptions; supports `[[ICON:KEY]]` placeholders and `n` line breaks |<br \/>\n| `title_description` | Section header for the description block |<br \/>\n| `description` | Body text for the description section |<\/p>\n<p>### Icon placeholders<\/p>\n<p>Use `[[ICON:KEY_NAME]]` inside `controls` or `description` strings to embed keyboard\/mouse icons. Examples:<\/p>\n<p>&#8211; `[[ICON:LEFT_CLICK]]`<br \/>\n&#8211; `[[ICON:RIGHT_CLICK]]`<br \/>\n&#8211; `[[ICON:SPACE]]`<br \/>\n&#8211; `[[ICON:CTRL]]`<br \/>\n&#8211; `[[ICON:W]]`, `[[ICON:A]]`, `[[ICON:S]]`, `[[ICON:D]]`<\/p>\n<p>### Text formatting<\/p>\n<p>Inside any text field you can use:<br \/>\n&#8211; `&#038;<code>` \u2014 Minecraft chat formatting codes (e.g. `&l` bold, `&c` red)<br \/>\n- `#RRGGBB` \u2014 Inline hex color<\/p>\n<p>### Config block<\/p>\n<p>All position values are normalized screen coordinates `[x, y]` where `(0, 0)` is top-left and `(1, 1)` is bottom-right.<\/p>\n<p>| Field | Type | Description |<br \/>\n|---|---|---|<br \/>\n| `timer` | `\"HH:MM:SS\"` | Countdown duration shown at the top |<br \/>\n| `timer_pos` | `[x, y]` | Timer position |<br \/>\n| `timer_scale` | float | Timer text scale |<br \/>\n| `minimize_scale` | `[x, y]` | Scale of the minimized state widget |<br \/>\n| `minimize_position` | `[x, y]` | Position of the minimized widget |<br \/>\n| `title_pos` | `[x, y]` | Title position |<br \/>\n| `title_scale` | float | Title text scale |<br \/>\n| `subtitle_pos` | `[x, y]` | Subtitle position |<br \/>\n| `subtitle_scale` | float | Subtitle text scale |<br \/>\n| `title_controls_pos` | `[x, y]` | Controls section header position |<br \/>\n| `title_controls_scale` | float | Controls section header scale |<br \/>\n| `controls_pos` | `[x, y]` | Controls list position |<br \/>\n| `controls_scale` | float | Controls list text scale |<br \/>\n| `title_description_pos` | `[x, y]` | Description section header position |<br \/>\n| `title_description_scale` | float | Description section header scale |<br \/>\n| `description_pos` | `[x, y]` | Description body position |<br \/>\n| `description_scale` | float | Description body text scale |<\/p>\n<p>### Cinematics block<\/p>\n<p>The `commands` array runs sequentially when the instruction screen opens.<\/p>\n<p>| Prefix | Example | Description |<br \/>\n|---|---|---|<br \/>\n| `console_command:` | `console_command: say Hello` | Runs a server command |<br \/>\n| `wait:` | `wait: 5s` | Waits the specified time before the next command |<\/p>\n<p>---<\/p>\n<p>## Translation<\/p>\n<p>The mod can auto-translate instruction content using the MyMemory free API. Configure this in `config\/setsumeisho\/translation.json`:<\/p>\n<p>```json<br \/>\n{<br \/>\n  \"enabled\": false,<br \/>\n  \"source_lang\": \"es\",<br \/>\n  \"api_key\": \"\"<br \/>\n}<br \/>\n```<\/p>\n<p>Use `\/setsumeisho pretranslate <file>` to pre-generate translations and cache them, so clients receive content in their own language without latency when the screen opens.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recreate the instructions from Eufonia Studios that were used in Squid Craft Games and DEDsafio<\/p>\n","protected":false},"featured_media":137798,"template":"","meta":{"_minecraft_slug":"setsumeisho","_minecraft_project_id":"ndi5VMKv","_minecraft_author":"ELBGG","_minecraft_license":"LicenseRef-CCUL-ELBGG","_minecraft_downloads":231,"_minecraft_follows":2,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"setsumeisho.zip","_minecraft_size_bytes":11079532,"_minecraft_version_count":10,"_minecraft_updated_at":"2026-05-16T12:24:14.353390Z","_minecraft_date_created":"2026-04-29T23:57:14.429864Z","_minecraft_date_modified":"2026-05-03T20:58:46.738098Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/setsumeisho","_minecraft_icon_attachment_id":137798,"_minecraft_imported_at":"2026-06-08T03:35:59+00:00","_minecraft_import_hash":"29e3a4dc1f69209800809820f1e87d0f","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,97,104,89,866,127,128,129,123],"mod_loader":[130,99,106,132,133,134],"minecraft_version":[36,94,37],"class_list":["post-137797","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-fabric","mod_category-forge","mod_category-game-mechanics","mod_category-minigame","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-technology","mod_loader-bukkit","mod_loader-fabric","mod_loader-forge","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-20-1","minecraft_version-1-20-4","minecraft_version-1-21-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Setsumeisho - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setsumeisho - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Recreate the instructions from Eufonia Studios that were used in Squid Craft Games and DEDsafio\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/\",\"name\":\"Setsumeisho - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/setsumeisho-icon-c251275b175ddc888b1ba1eb6a0c7e30ed68ff6d_96.webp\",\"datePublished\":\"2026-06-08T03:35:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/setsumeisho-icon-c251275b175ddc888b1ba1eb6a0c7e30ed68ff6d_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/setsumeisho-icon-c251275b175ddc888b1ba1eb6a0c7e30ed68ff6d_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/setsumeisho\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Setsumeisho\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setsumeisho - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/","og_locale":"en_US","og_type":"article","og_title":"Setsumeisho - Minecraft","og_description":"Recreate the instructions from Eufonia Studios that were used in Squid Craft Games and DEDsafio","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/","name":"Setsumeisho - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/setsumeisho-icon-c251275b175ddc888b1ba1eb6a0c7e30ed68ff6d_96.webp","datePublished":"2026-06-08T03:35:58+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/setsumeisho-icon-c251275b175ddc888b1ba1eb6a0c7e30ed68ff6d_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/setsumeisho-icon-c251275b175ddc888b1ba1eb6a0c7e30ed68ff6d_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/setsumeisho\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Setsumeisho"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/137797","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/137798"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=137797"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=137797"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=137797"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=137797"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}