# Minigames

## 🎮 Minigames

#### Three built-in skill check minigames add challenge to the chopping process.

````
## Circle Timing

![Circle Minigame]

Press **SPACE** when the orange dot is inside the green zone.

```lua
skillType = 'circle',
skillDifficulty = 'hard',
````

| Difficulty | Speed | Zone Size | Rounds |
| ---------- | ----- | --------- | ------ |
| Easy       | 20    | 50        | 2      |
| Medium     | 35    | 35        | 3      |
| Hard       | 50    | 25        | 3      |

### Key Sequence

!\[Sequence Minigame]

Watch the key sequence, then repeat it from memory.

```
skillType = 'sequence',
skillDifficulty = 'medium',
```

Keys used: W, A, S, D, Q, E

### Wire Cutting

!\[Wire Cut Minigame]

Cut the correct colored wire before time runs out.

```
skillType = 'wire_cut',
skillDifficulty = 'medium',
```

Colors: Red, Blue, Green, Yellow, White, Orange

### Disabling Minigames

To disable all minigames:

```
Config.Minigame = {
    enabled = false,
}
```

To disable for specific parts:

```
engine = {
    skillCheck = false,     -- no minigame for engine
},
```


---

# 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://elena-scripts.gitbook.io/elenascripts/jobs-and-activities/chop-shop-v1/minigames.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.
