# Configuration

### General

All configurable parameters are defined in the `{game}/x64/scripts/config/CuratedLevelCurveConfig.lua` file.

This configuration file which can be modified via any text editor.

### Layout

{% code fullWidth="false" %}

```lua
local levels = {
  [level] = experience, 
  ...
}

return levels
```

{% endcode %}

### Parameters

The following lists all configurable parameters and their purposes:

#### `levels`

A table of experiences of all levels.

#### `level`

The numeric identifier of the level.

Must start at `1` and increase sequentially without gaps.

#### `experience`

The total amount of experience required to reach that level.

Must be strictly greater than the value of the previous level.


---

# 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://xeavin.gitbook.io/curated-level-curve/overview/configuration.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.
