> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Quest Active Fact

> Fact returning 1 when the configured battle pass week is active (available) for the player.

The **Quest Active Fact** checks if a specific week of a Battle Pass is currently available and unlocked for the player. It returns `1` if active, `0` otherwise.

## Properties

| Property     | Type                            | Default | Description                           |
| :----------- | :------------------------------ | :------ | :------------------------------------ |
| `id`         | String                          |         | The unique identifier for this entry. |
| `name`       | String                          |         | The internal name of the entry.       |
| `battlePass` | Ref\<BattlePassDefinitionEntry> |         | The Battle Pass to check.             |
| `week`       | Int                             | `0`     | The week number to check.             |

## Example

```yaml theme={null}
battle_pass_quest_active_fact:
  id: "is_week_1_active"
  battlePass: "season_1_pass"
  week: 1
```
