> For the complete documentation index, see [llms.txt](https://qm0-1.gitbook.io/questmaster-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://qm0-1.gitbook.io/questmaster-docs/readme.md).

# QuestMaster Document

Welcome to **QuestMaster**, a flexible Minecraft Missions plugin that lets you create **normal and global missions** using simple YAML files.

This guide will help you understand:

* Mission Configuration
* Mission Types
* Custon Items and Rewards
* Global Missions (VCT)

### Example

{% tabs %}
{% tab title="Example 1" %}
Normal Mission (No Time)

```yml
missions:
  ExpertMiner:
    name: "ExpertMiner"
    type: BREAK_BLOCK
    objective: DIAMOND_ORE
    amount: 10
    rewards:
      - "item:mystic_pickaxe"
      - "xp:2l"
      - "give:gold_ingot 5"
      - "command:gamemode survival %player%"
    description:
      - "Mine 10 diamond ores"
      - "and show your mining skills!"
      - "rewards:"
      - " - lvl (2)"
      - " - Golden Ingot (5)"
      - " - Mystic Pickaxe (1)"
    conditions:
      - "min_level: 5"
      - "world: world"
      - "require_item_hand: DIAMOND_PICKAXE"
      - "require_item_offhand: SHIELD"
```

{% endtab %}

{% tab title="Example 2" %}
Normal Mission (With Time)

```yml
missions:
  BlacksmithApprentice:
    name: "BlacksmithApprentice"
    type: CRAFT
    objective: IRON_SWORD
    time: "00;01;00"
    amount: 1
    rewards:
      - "give:shield 1"
    description:
      - "Craft an iron sword."
      - "rewards:"
      - " - Shield (1)"
```

{% endtab %}

{% tab title="Example 3" %}
Global Missions

```yml
missions:
  ShinyCollector:
    enabled: false
    name: "ShinyCollector"
    type: COLLECT_ITEM
    objective: DIAMOND_PICKAXE
    global: true
    global-time: "00;01;00;timer_3"
    max-players: 2
    amount: 3
    rewards:
      - "give:emerald 2"
    description:
     - "Collect 3 diamonds."
     - "rewards:"
     - " - Emerald (2)"
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://qm0-1.gitbook.io/questmaster-docs/readme.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
