QuestBook is a quest management mod for Hytale inspired by FTB Quests and Better Questing from Minecraft. Create custom quest lines to guide players through progression, tutorials, or adventures.
* wildcards for flexible matching (e.g., Ore_* matches any ore)| Command | Description |
|---|---|
| <code>/quest book</code> | Open the quest book UI |
| <code>/quest track <id></code> | Track a specific quest |
| <code>/quest untrack</code> | Stop tracking current quest |
| <code>/quest progress</code> | View your overall progress |
| <code>/quest location</code> | Show your current zone/biome |
| <code>/questadmin reload</code> | Reload quest files |
Quest files are stored in your Hytale save folder:
Mac: ~/Library/Application Support/Hytale/UserData/Saves/Modding/plugins/QuestBook/quests/
Windows: %APPDATA%/Hytale/UserData/Saves/Modding/plugins/QuestBook/quests/
Edit the included vanilla_quests.json or create your own .json files. Use /questadmin reload to apply changes without restarting.
{ "type": "craft", "id": "craft_sword", "item": "Weapon_Sword_Copper", "count": 1 }{ "type": "kill", "id": "kill_trorks", "mob": "Trork_*", "count": 10 }{ "type": "block_break", "id": "mine_ore", "block": "Ore_*", "count": 20 }{ "type": "item", "id": "have_iron", "item": "Ingredient_Bar_Iron", "count": 10, "consume": false }Set consume: true to require players to turn in items via a "Submit Items" button.
{ "type": "location", "id": "reach_desert", "zone": "HowlingSands*" }Or use depth-based checks:
{ "type": "location", "id": "go_deep", "below_y": 110 }Use /quest location in-game to find zone and biome names.
{
"default_chapter": "getting_started",
"chapters": [
{
"id": "getting_started",
"title": "Getting Started",
"icon": "Tool_Hatchet_Crude",
"sort_order": 0,
"quests": [
{
"id": "first_tool",
"title": "Your First Tool",
"description": "Craft a crude hatchet to gather wood faster.",
"icon": "Tool_Hatchet_Crude",
"x": 0, "y": 0,
"dependencies": [],
"tasks": [
{ "type": "craft", "id": "craft_hatchet", "item": "Tool_Hatchet_Crude", "count": 1 }
],
"rewards": [
{ "type": "item", "item": "Ingredient_Stick", "amount": 10 }
]
}
]
}
]
}| Pattern | Matches |
|---|---|
| <code>*</code> | Anything |
| <code>Wood*Trunk</code> | Any wood type |
| <code>Trork_*</code> | Any Trork variant |
| <code>Food*Cooked</code> | Any cooked food |
/quest location before creating location questsPerfect for modpack creators, server owners, or anyone wanting to add guided progression to their Hytale experience.
0 Comments