# Add new sound effect

In `xdiskjockey/config.lua` you can find array called "SoundsEffects" where you can add new one / edit existing one, or remove them. They are all shared between mixers.

```lua
-- All sound effects are shared between all mixers
SoundsEffects = {
    -- item 1
    {
        Name = "Countdown from 10 to 0 and hyping on end",
        URL = "https://www.youtube.com/watch?v=iwYDfyCABAc",
    },
    -- another item
    {
        Name = "Count down from 5 to 1 and hyping on end",
        URL = "https://www.youtube.com/watch?v=LZyIgCOeLLU",
    },
}
```


---

# Agent Instructions: 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:

```
GET https://documentation.rcore.cz/paid-resources/xdiskjockey/config/sound_effect.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
