> For the complete documentation index, see [llms.txt](https://battlepass.advancedplugins.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://battlepass.advancedplugins.net/useful/quest-specific-regions.md).

# Quest Specific Regions

For any quests that you would like the progress it not be progressed in, simple add `blacklisted-regions` to the quest you desire as shown below.

```
quests:
  1: # Quest id
    name: 'Daily - Miner' # The name given to the quest.
    type: block-break # The type of quest
    variable: coal_ore:0 # The block the player must break.
    required-progress: 10 # The amount of times the player should break the coal ore block.
    points: 10 # The amount of points that will be rewarded
    blacklisted-regions: #The regions where the quest will not progress
      - 'no-mining-region'
      - 'noCoalRegion'
    item: # The item that will be displayed in menus.
      material: diamond_pickaxe:0
      amount: 1
      name: '&eMiner'
      lore:
        - '&7Mine &e10 coal'
        - ''
        - '&7Progress &e%total_progress%&7/&e%required_progress%'
```

#### Compatibility

* WorldGuard


---

# 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://battlepass.advancedplugins.net/useful/quest-specific-regions.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.
