{"id":127713,"date":"2026-06-07T15:20:44","date_gmt":"2026-06-07T12:20:44","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/"},"modified":"2026-06-07T15:20:44","modified_gmt":"2026-06-07T12:20:44","slug":"questify","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/","title":{"rendered":"Questify"},"content":{"rendered":"<p># Questify<\/p>\n<p>A cross-platform, production-ready questing mod for Minecraft with a modern GUI, powerful theming, and a clean public API. Built on Architectury to provide identical behavior on Forge and Fabric from a single codebase.<\/p>\n<p>**Want to support the project?** Donations on Ko-fi help cover server expenses!<\/p>\n<p>&#8212;<\/p>\n<p>## Important Notice<\/p>\n<p>**Questify and all BobcatMods projects are now available exclusively on Modrinth**<\/p>\n<p>Due to ongoing issues with the CurseForge moderation team, all of our mods are no longer being updated on CurseForge. We&#8217;ve encountered repeated moderation blocks based on misunderstandings of standard industry practices &#8211; the same practices used by approved applications and mods across the ecosystem.<\/p>\n<p>After attempting to work through the appeals process with detailed technical documentation, we&#8217;ve decided to focus our efforts on platforms that better understand modern development practices.<\/p>\n<p>Updates will continue regularly on Modrinth, where we can provide the best experience for our users without unnecessary delays.<\/p>\n<p>**Note:** We&#8217;re planning to develop a Questify \u2192 FTB Quests converter for pack developers who want to use Questify&#8217;s editing tools and features on Modrinth, but need to distribute their quest pack for FTB Quests on CurseForge. This will allow the best of both worlds &#8211; powerful authoring tools with broad compatibility.<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>Questify brings a complete quest system to Minecraft with dependencies, groups (chapters), hidden quests, tags, positions, icons, and persistent progress tracking. The visual quest GUI features an animated quest tree with dependency lines, fit-to-screen functionality, chapter images, and a detailed quest panel.<\/p>\n<p>The built-in theme system is compatible with FTB Quests theme files and includes a Theme Editor for customization. Players receive notifications and HUD updates for unlocks, quest completion, and celebrations. The mod also supports importing from FTB Quests with full task\/reward mapping, dependencies, and chapter metadata.<\/p>\n<p>Additional features include statistics-based requirements supporting all Minecraft statistics, administration commands with data validation, and a public API for registering custom requirement\/reward types and listening for quest events.<\/p>\n<p>&#8212;<\/p>\n<p>## Requirements<\/p>\n<p>* **Minecraft:** 1.20.1<br \/>\n* **Architectury API:** 9.2.14+<br \/>\n* **Loaders:** Forge 47.x.x or Fabric Loader 0.17.3+<br \/>\n* **Dependencies:** Fabric API (Fabric only) | EasyScreen (Fabric\/Forge)<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>Download the mod JAR for your platform (Forge or Fabric) from Modrinth and place it in your `mods` folder. Start Minecraft and the mod will auto-initialize and create its data directory on first run.<\/p>\n<p>&#8212;<\/p>\n<p>## Getting Started<\/p>\n<p>Press `J` in-game to open the quest GUI, or run `\/quest gui`. Create your first quest by adding a JSON file under `<world>\/data\/Questify\/quests\/`, then run `\/quest reload`. Complete requirements in-game and click the Complete button in the GUI, or use `\/quest complete <id>` to claim your rewards.<\/p>\n<p>## Using the GUI<\/p>\n<p>Questify provides a graph-style quest screen (`QuestGraphScreen`) with:<\/p>\n<p>* **Group\/chapter filters** across the top.<br \/>\n* **Animated quest nodes** with shapes, sizes, completion checkmarks, lock\/hidden icons.<br \/>\n* **Dependency lines** with state-aware colors, thickness, and optional animated effects.<br \/>\n* **Zoom and fit-to-screen** for large quest trees.<br \/>\n* **Details panel** showing title, description (wrapped), requirements with progress, and rewards.<br \/>\n* **Chapter images** rendered behind quests when provided by imported packs.<br \/>\n* **Theme Editor** button to open a live-editable theme screen.<br \/>\n* **Animation toggle** for performance tuning on lower-end systems.<\/p>\n<p>Controls:<\/p>\n<p>* Mouse wheel: zoom in\/out (keeps cursor focus).<br \/>\n* Drag: pan the view.<br \/>\n* Buttons: Center, Fit, Complete selected, Theme, Anim on\/off.<\/p>\n<p>&#8212;<\/p>\n<p>## Quest Data Location<\/p>\n<p>Quest data is stored under the game path configured by the platform. By default the mod uses:<\/p>\n<p>* Quests: `<world>\/data\/Questify\/quests\/`<br \/>\n* Chapters metadata: `<world>\/data\/Questify\/chapters\/`<br \/>\n* Player progress is stored per-player and saved automatically.<\/p>\n<p>Quests can be organized in subfolders (commonly by group\/chapter). Files are pretty-printed JSON.<\/p>\n<p>&#8212;<\/p>\n<p>## JSON Format<\/p>\n<p>Minimal quest example (`<world>\/data\/Questify\/quests\/first_quest.json`):<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;id&#8221;: &#8220;my_first_quest&#8221;,<br \/>\n  &#8220;title&#8221;: &#8220;My First Quest&#8221;,<br \/>\n  &#8220;description&#8221;: &#8220;Collect some dirt blocks!&#8221;,<br \/>\n  &#8220;icon&#8221;: &#8220;minecraft:dirt&#8221;,<br \/>\n  &#8220;group&#8221;: &#8220;starter&#8221;,<br \/>\n  &#8220;dependencies&#8221;: [],<br \/>\n  &#8220;requirements&#8221;: [<br \/>\n    {<br \/>\n      &#8220;type&#8221;: &#8220;item_obtain&#8221;,<br \/>\n      &#8220;item&#8221;: &#8220;minecraft:dirt&#8221;,<br \/>\n      &#8220;count&#8221;: 10,<br \/>\n      &#8220;consume&#8221;: true<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;rewards&#8221;: [<br \/>\n    {<br \/>\n      &#8220;type&#8221;: &#8220;item&#8221;,<br \/>\n      &#8220;item&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n      &#8220;count&#8221;: 1<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;type&#8221;: &#8220;xp&#8221;,<br \/>\n      &#8220;amount&#8221;: 100<br \/>\n    }<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Common root fields:<\/p>\n<p>* `id` (string) \u2013 Unique quest id.<br \/>\n* `title` (string) \u2013 Display title.<br \/>\n* `description` (string) \u2013 Multi-line supported with `n`.<br \/>\n* `icon` (string) \u2013 Item ID or resource path.<br \/>\n* `group` (string) \u2013 Chapter\/category.<br \/>\n* `hidden` (bool) \u2013 Hide until conditions.<br \/>\n* `x`, `y` (int) \u2013 Position in graph (pixels or imported grid transformed to pixels).<br \/>\n* `dependencies` (string[]) \u2013 Prerequisite quest ids.<br \/>\n* `requirements` (array) \u2013 See below.<br \/>\n* `rewards` (array) \u2013 See below.<\/p>\n<p>### Requirement Types<\/p>\n<p>**Item obtainment**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;item_obtain&#8221;, &#8220;item&#8221;: &#8220;minecraft:diamond&#8221;, &#8220;count&#8221;: 10, &#8220;consume&#8221;: true }<br \/>\n&#8220;`<\/p>\n<p>**Item crafting**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;item_craft&#8221;, &#8220;item&#8221;: &#8220;minecraft:diamond_pickaxe&#8221;, &#8220;count&#8221;: 1 }<br \/>\n&#8220;`<\/p>\n<p>**Entity kill**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;entity_kill&#8221;, &#8220;entity&#8221;: &#8220;minecraft:zombie&#8221;, &#8220;count&#8221;: 20 }<br \/>\n&#8220;`<\/p>\n<p>**Advancement**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;advancement&#8221;, &#8220;advancement&#8221;: &#8220;minecraft:story\/mine_diamond&#8221; }<br \/>\n&#8220;`<\/p>\n<p>**Command trigger**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;command&#8221;, &#8220;id&#8221;: &#8220;custom_trigger&#8221;, &#8220;description&#8221;: &#8220;Custom completion trigger&#8221; }<br \/>\n&#8220;`<\/p>\n<p>**Statistic** (all Minecraft stats supported)<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;statistic&#8221;, &#8220;statistic&#8221;: &#8220;minecraft:walk_one_cm&#8221;, &#8220;value&#8221;: 100000 }<br \/>\n&#8220;`<\/p>\n<p>Notes for statistics:<\/p>\n<p>* Distances are in centimeters (100 cm = 1 block). Walking 1,000 blocks is 100,000.<br \/>\n* Values are cumulative; progress is polled at intervals and synced to the client.<\/p>\n<p>### Reward Types<\/p>\n<p>**Item**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;item&#8221;, &#8220;item&#8221;: &#8220;minecraft:diamond_sword&#8221;, &#8220;count&#8221;: 1 }<br \/>\n&#8220;`<\/p>\n<p>**XP** (points or levels)<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;xp&#8221;, &#8220;amount&#8221;: 1000, &#8220;levels&#8221;: false }<br \/>\n&#8220;`<\/p>\n<p>**Command**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;command&#8221;, &#8220;command&#8221;: &#8220;give {player} minecraft:diamond 5&#8221;, &#8220;displayName&#8221;: &#8220;5 Diamonds&#8221; }<br \/>\n&#8220;`<\/p>\n<p>**Title**<\/p>\n<p>&#8220;`json<br \/>\n{ &#8220;type&#8221;: &#8220;title&#8221;, &#8220;title&#8221;: &#8220;Achievement Unlocked!&#8221;, &#8220;subtitle&#8221;: &#8220;You did it!&#8221; }<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## FTB Quests Import<\/p>\n<p>Import an FTB Quests pack directly and convert it to Questify format, including chapter metadata:<\/p>\n<p>&#8220;`<br \/>\n\/quest import ftb <path_to_ftbquests_folder>\n&#8220;`<\/p>\n<p>Imported content:<\/p>\n<p>* Quest structure and dependencies.<br \/>\n* Task mapping to requirements: item, craft, kill, advancement, checkmark.<br \/>\n* Reward mapping: item, xp, xp_levels, command.<br \/>\n* Positions, icons, titles, descriptions.<br \/>\n* Chapter images\/links\/defaults saved for client sync.<\/p>\n<p>The importer reads SNBT and translations, performs id sanitization, and writes JSON quests under `<world>\/data\/Questify\/quests\/`. Chapter metadata is saved under `<world>\/data\/Questify\/chapters\/` and is synced to clients.<\/p>\n<p>&#8212;<\/p>\n<p>## Themes and Appearance<\/p>\n<p>Questify supports FTB Quests theme files and provides a live Theme Editor.<\/p>\n<p>* Theme file format: INI-like sections with selectors and properties.<br \/>\n* Selectors: `*`, quest id, `group:<name>`, `#tag`, logical combinations.<br \/>\n* Properties include text colors, quest state colors, dependency line colors, spacing, sizes, background, icons, and more.<br \/>\n* Animated backgrounds and line effects are supported. Icon modifiers include color, alpha, tiling, scale.<\/p>\n<p>Open the Theme Editor from the quest GUI via the Theme button. Changes preview live and can be saved for reuse.<\/p>\n<p>&#8212;<\/p>\n<p>## Notifications and HUD<\/p>\n<p>* Quest unlocked: shown when dependencies are newly met.<br \/>\n* Quest ready: shown when requirements are fully satisfied, with instructions to claim.<br \/>\n* Quest claimed: title\/subtitle, chat summary, and sounds.<br \/>\n* Optional HUD overlay can display up to three tracked quests with live progress.<\/p>\n<p>All notifications are de-duplicated and cached per player to avoid spam. Cache resets on completion or disconnect.<\/p>\n<p>&#8212;<\/p>\n<p>## Teams Menu<\/p>\n<p>* **Team button in Quest UI**: Open the quest GUI and click the `Team` button.<br \/>\n  * If you are not in a team, `TeamCreationScreen` will guide you through creating one.<br \/>\n  * If you are already in a team, `TeamManagementScreen` lets you manage invites and membership.<br \/>\n* Works in single-player and multiplayer. Server-side rules apply when configured.<br \/>\n* Optional integration with team libraries is supported when present.<\/p>\n<p>&#8212;<\/p>\n<p>## Built-in Editors<\/p>\n<p>Questify includes first-class editors for pack authors and server admins:<\/p>\n<p>* **Quest Editor** (`QuestEditorScreen`) \u2013 Full quest authoring with tabs for requirements, rewards, dependencies, team settings, preview, and advanced options.<br \/>\n* **Theme Editors** (`NewThemeEditorScreen`, `ThemeEditorScreen`) \u2013 Live theme editing with property search, categories, selectors, and instant preview.<br \/>\n* **Chapter Editors** (`ChapterArtEditorScreen`, `ChapterImageEditorScreen`) \u2013 Manage chapter metadata, default options, links, and layered chapter images.<\/p>\n<p>### How to Enable and Open the Editors<\/p>\n<p>Access is permission- and config-gated to prevent accidental edits on public servers.<\/p>\n<p>1. Server must allow the Advanced Editor for the player.<br \/>\n   * The server syncs a runtime flag to clients; when enabled and permitted, the Advanced button appears in the quest GUI.<br \/>\n2. Client may optionally hide the editor locally.<br \/>\n   * Set `clientEnableAdvancedEditor` to `true` in `config\/questory_client.json` (default is true).<br \/>\n3. Open the quest GUI (`J`), then click **Advanced** to open the editor menu, and choose Quest\/Theme\/Chapter.<\/p>\n<p>Notes:<\/p>\n<p>* A small popup recommends using **UI scale 1 or 2** for the editors due to text density. You can suppress this by setting `suppressUiScaleEditorWarning` to `true` in `config\/questory_client.json`.<\/p>\n<p>&#8212;<\/p>\n<p>## HUD Improvements<\/p>\n<p>The HUD overlay (`QuestHudOverlay`) was expanded for clarity and customization:<\/p>\n<p>* **Track quests** from the quest details or with the keybind; displays up to 5 tracked quests.<br \/>\n* **Compact mode** and **full mode** with optional progress bars.<br \/>\n* **Position\/scale\/opacity**: configurable via the gear button in the quest UI or via `config\/questory_client.json`:<br \/>\n  * `hudPosition` (TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT)<br \/>\n  * `hudScale` (0.5\u20132.0)<br \/>\n  * `hudOpacity` (0\u2013100)<br \/>\n  * `hudCompactMode`, `hudShowIcons`, `hudShowProgressBars`, `hudOffsetX`, `hudOffsetY`<\/p>\n<p>&#8212;<\/p>\n<p>## 0.4 Highlights<\/p>\n<p>* **Advanced Editors**: Quest, Theme, and Chapter editors with live preview, validation, and import-friendly flows.<br \/>\n* **Teams Menu**: Create and manage teams directly from the quest UI.<br \/>\n* **HUD Overhaul**: More readable, configurable overlay with compact and full modes.<br \/>\n* **UI Scale Guidance**: Non-intrusive popup suggests using UI scale 1\u20132 for best editor readability (can be disabled).<\/p>\n<p>&#8212;<\/p>\n<p>## Commands<\/p>\n<p>**Player-facing:**<\/p>\n<p>* `\/quest list` \u2013 List available quests.<br \/>\n* `\/quest info <id>` \u2013 View quest details.<br \/>\n* `\/quest progress` \u2013 Show overall progress.<br \/>\n* `\/quest complete <id>` \u2013 Complete a quest and claim rewards.<br \/>\n* `\/quest gui` \u2013 Open the quest GUI.<\/p>\n<p>**Administration (OP):**<\/p>\n<p>* `\/quest reset <id>` \u2013 Reset a player&#8217;s progress for a quest.<br \/>\n* `\/quest reload` \u2013 Reload all quests from disk.<br \/>\n* `\/quest track <type> <id>` \u2013 Manually track progress for debugging.<br \/>\n* `\/quest import ftb <path>` \u2013 Import FTB Quests data.<br \/>\n* `\/quest validate` \u2013 Validate all quests and report issues.<br \/>\n* `\/quest config reload` \u2013 Reload configuration.<\/p>\n<p>&#8212;<\/p>\n<p>## Server, Persistence, and Sync<\/p>\n<p>* All quests are JSON files readable and writable server-side.<br \/>\n* Player progress is saved and synced to clients automatically.<br \/>\n* On join, the server sends quests and progress to populate the client cache.<br \/>\n* Chapter metadata (images, links, defaults) is also synced to clients when present.<\/p>\n<p>&#8212;<\/p>\n<p>## Performance<\/p>\n<p>* Efficient culling and batching on the GUI to handle large quest sets.<br \/>\n* Adaptive zoom and fit mechanics to keep navigation smooth.<br \/>\n* Animated effects can be toggled off per-client.<br \/>\n* Progress tracking is event-driven and statistics polling is interval-based.<\/p>\n<p>&#8212;<\/p>\n<p>## Compatibility<\/p>\n<p>* Forge and Fabric support with identical behavior via Architectury.<br \/>\n* Vanilla-friendly item IDs, advancements, and statistics.<br \/>\n* Works alongside common modpacks; FTB packs can be converted.<\/p>\n<p>&#8212;<\/p>\n<p>## Mod Compatibility<\/p>\n<p>**FTBTeams (optional)**<\/p>\n<p>* Auto-detected and used when present. Questify registers an external team provider and listens to team events to keep the in-game Team UI synchronized (`FTBTeamsProvider`, `FTBTeamsIntegration`).<br \/>\n* No hard dependency. If absent, Questify&#8217;s built-in team system works normally.<\/p>\n<p>**FTB Quests import**<\/p>\n<p>* Built-in importer converts FTB Quests packs including chapters, tasks, rewards, dependencies, and chapter images.<br \/>\n* See the &#8220;FTB Quests Import&#8221; section for the command and supported mappings.<\/p>\n<p>**JourneyMap (optional, client-side)**<\/p>\n<p>* File-based waypoint sync for Location and Region requirements. Waypoints are created in the current JM world&#8217;s `waypoints\/` folder and cleaned up automatically as progress changes (`MapCompatManager`).<br \/>\n* Only non-completed requirements are marked. If you track quests, only tracked quests are exported.<br \/>\n* Toggle in `config\/questory_client.json`: `mapIntegrationEnabled` and `journeyMapEnabled`, or via the in-game config screen.<\/p>\n<p>**GameStages (optional)**<\/p>\n<p>* Enables stage-based gameplay via a new requirement and reward type. Works on Forge and Fabric with a soft dependency (`GameStagesHelper`).<br \/>\n* Requirement example:<br \/>\n  &#8220;`json<br \/>\n  { &#8220;type&#8221;: &#8220;stage&#8221;, &#8220;stage&#8221;: &#8220;bronze&#8221; }<br \/>\n  &#8220;`<br \/>\n* Reward example (grant or remove a stage):<br \/>\n  &#8220;`json<br \/>\n  { &#8220;type&#8221;: &#8220;stage&#8221;, &#8220;stage&#8221;: &#8220;bronze&#8221;, &#8220;remove&#8221;: false }<br \/>\n  &#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## API and Integration<\/p>\n<p>Questify exposes a public API to extend the system:<\/p>\n<p>* Register custom requirement and reward types.<br \/>\n* Subscribe to quest lifecycle events (unlocked, ready, completed, claimed).<br \/>\n* Query player progress for gameplay integration.<\/p>\n<p>See packages under `org.texboobcat.Questify.api` for examples and events. Custom integrations should add corresponding tracking into server-side event hooks and call `QuestManager` methods to update progress.<\/p>\n<p>&#8212;<\/p>\n<p>## Troubleshooting<\/p>\n<p>**The GUI does not open**<\/p>\n<p>* Ensure you are on the client and press `J`, or run `\/quest gui`.<br \/>\n* Check that quests are present or run `\/quest reload`.<\/p>\n<p>**Import failed**<\/p>\n<p>* Verify the path points at the `ftbquests` data folder containing SNBT.<br \/>\n* Check server logs for conversion errors and invalid ids.<\/p>\n<p>**Requirements not tracking**<\/p>\n<p>* For items\/crafting\/kills\/advancements, ensure the IDs and counts match.<br \/>\n* For statistics, remember distances are centimeters and values are cumulative.<\/p>\n<p>**Performance issues**<\/p>\n<p>* Use the Anim toggle in the GUI.<br \/>\n* Filter by chapter instead of viewing all at once.<\/p>\n<p>&#8212;<\/p>\n<p>## Support the Project<\/p>\n<p>**Support us on Ko-fi \u2192**<\/p>\n<p>Your donations help cover server expenses and keep development going strong!<\/p>\n<p>&#8212;<\/p>\n<p>## Links<\/p>\n<p>* **Download on Modrinth**<br \/>\n* **Support on Ko-fi**<\/p>\n<p>&#8212;<\/p>\n<p>*Building better questing experiences for everyone.*<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Questify is a drop-in quest system that auto-converts FTB Quests packs, keeps theme parity, and works on Fabric &#038; Forge without extra setup.<\/p>\n","protected":false},"featured_media":127714,"template":"","meta":{"_minecraft_slug":"questify","_minecraft_project_id":"6Adtk0PR","_minecraft_author":"Bobcat","_minecraft_license":"MIT","_minecraft_downloads":2462,"_minecraft_follows":28,"_minecraft_client_side":"optional","_minecraft_server_side":"optional","_minecraft_storage_type":"zip","_minecraft_archive_name":"questify.zip","_minecraft_size_bytes":202234178,"_minecraft_version_count":30,"_minecraft_updated_at":"2026-05-15T19:49:46.413052Z","_minecraft_date_created":"2025-10-24T06:05:50.305633Z","_minecraft_date_modified":"2025-12-17T02:18:45.875852Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/questify","_minecraft_icon_attachment_id":127714,"_minecraft_imported_at":"2026-06-07T12:20:45+00:00","_minecraft_import_hash":"e209ec66b7a9c8de41f62f40bd99a161","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,104,89,867,92],"mod_loader":[99,106],"minecraft_version":[36],"class_list":["post-127713","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-forge","mod_category-game-mechanics","mod_category-social","mod_category-utility","mod_loader-fabric","mod_loader-forge","minecraft_version-1-20-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Questify - 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\/questify\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Questify - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Questify is a drop-in quest system that auto-converts FTB Quests packs, keeps theme parity, and works on Fabric &amp; Forge without extra setup.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/questify\/\" \/>\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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/\",\"name\":\"Questify - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/questify-icon-dcab734d9be1cefdfa3d275d6fc649712710dd5b.png\",\"datePublished\":\"2026-06-07T12:20:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/questify-icon-dcab734d9be1cefdfa3d275d6fc649712710dd5b.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/questify-icon-dcab734d9be1cefdfa3d275d6fc649712710dd5b.png\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/questify\\\/#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\":\"Questify\"}]},{\"@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":"Questify - 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\/questify\/","og_locale":"en_US","og_type":"article","og_title":"Questify - Minecraft","og_description":"Questify is a drop-in quest system that auto-converts FTB Quests packs, keeps theme parity, and works on Fabric & Forge without extra setup.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/","name":"Questify - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/questify-icon-dcab734d9be1cefdfa3d275d6fc649712710dd5b.png","datePublished":"2026-06-07T12:20:44+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/questify\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/questify-icon-dcab734d9be1cefdfa3d275d6fc649712710dd5b.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/questify-icon-dcab734d9be1cefdfa3d275d6fc649712710dd5b.png","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/questify\/#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":"Questify"}]},{"@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\/127713","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\/127714"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=127713"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=127713"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=127713"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=127713"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}