> For the complete documentation index, see [llms.txt](https://jeqo.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jeqo.gitbook.io/wiki/gizmo/default-files/configuration.md).

# Configuration

The main configuration file for Gizmo is generated as 'config.yml' in the root of the Gizmo directory.

<pre class="language-yaml" data-title="config.yml"><code class="lang-yaml"><strong>debug-mode: false
</strong># -------------------------------------------------- #
#
# Gizmo [version] - Made by Jeqo
#
# Discord:
# https://jeqo.net/discord
#
# Resource &#x26; Data Pack Guides:
# https://jeqo.net/guides
#
# -------------------------------------------------- #
background-color: '&#x26;0' # Minecraft color and hex code supported (i.e. &#x26;0 or #000000).

delay: 0 # The delay (in ticks; 20 ticks per second) for the welcome screen to be displayed after joining.
delay-background: false # Display the background texture while the delay is active.

enable-fade: true # Fade the screen with your background texture when advancing.
fade-time: 10 # The duration (in ticks; 20 ticks per second) for the fade.

# Execute commands from the player or console, or send a message.
# Valid prefixes: [player], [console], [message]
# To disable commands -> commands-on-advance: []
commands-on-advance:
  - '[player] balance'
  - '[console] give %player% dirt 1'
  - '[message] Is that dirt in your inventory? Ew...'

# Give the player invulnerability when loading the pack.
# Recommended if you don't have a plugin that keeps your players safe whilst loading the pack.
player-invulnerable-during-load: true
blindness-during-prompt: true # Give players blindness when they have the pack prompt.

kick-on-decline: false # Kick the player if they don't accept the pack.

hide-join-messages: false # If true, player join messages will be hidden.
hide-quit-messages: false # If true, player quit messages will be hidden.

sound-on-pack-load: # Play a sound when the player's pack finishes loading.
  enable: true
  sound: ENTITY_PLAYER_LEVELUP
  volume: 0.5
  pitch: 1

sound-on-advance: # Play a sound when the player advances from the welcome screen.
  enable: true
  sound: ENTITY_CHICKEN_EGG
  volume: 0.5
  pitch: 1
</code></pre>


---

# 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://jeqo.gitbook.io/wiki/gizmo/default-files/configuration.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.
