Patchouli Quests
This mod requires Vazkii's Patchouli mod to function. Don't forget to install it!
This mod adds a completely new functionality to Patchouli guidebooks — they can now serve as quest books!
This is the most convenient and interesting way to create quests, especially while other quest mods are still in development!
Note: The mod is currently in active development. The current version may contain bugs. We recommend waiting for a stable release.
How to Use?
First, familiarize yourself with the Patchouli usage guide. Then simply use the new page types from Patchouli Quests to write your quests (relevant for version 1.3.3).
Example of a collection quest:
{
"type": "collect_task",
"collect": {"tag:minecraft:planks": 3,"minecraft:apple": 10},
"finish_cmd": ["kill @a"],
"consume": false,
"reward": ["minecraft:apple#4"],
"hide": true,
"lock": true,
"id": 1
}
Example of a position achievement quest:
{
"type": "near_position_task",
"x": 0,
"y": 0,
"z": 60,
"range": 100,
"finish_cmd": [],
"reward": ["minecraft:apple#4"],
"hide": true,
"lock": true,
"id": 1
}
In the collect field, you specify the items required to complete the quest, and in the reward field — the rewards the player receives.
There's also a command available for managing quests:
patchouli_quests task @a <book> <entry> <id> <hide|un_hide|lock|un_lock>
This command allows you to hide/show and lock/unlock quests. It's simple! Now you can unleash your creativity in creating exciting quests!
Future Plans
Future versions plan to add more variety of quest types.