> For the complete documentation index, see [llms.txt](https://xeavin.gitbook.io/the-insurgents-bountiful-bundle/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xeavin.gitbook.io/the-insurgents-bountiful-bundle/getting-started/configuration.md).

# Configuration

### Configuration

The state of all options are loaded from and saved into the `{game}/x64/scripts/config/TheInsurgentsBountifulBundleConfig.lua` file when opening or closing the game.

The preferred method is to use the hotkeys to toggle options or configure parameters, but the configuration file can also be modified via any text editor if needed.

The following configuration is the default:

<details>

<summary>Default Configuration</summary>

```lua
local configStates = {
  peacefulMode = false,
  godMode = false,
  oneHitKill = false,
  expMultiplier = false,
  lpMultiplier = false,
  partyMovementSpeedMultiplier = false,
  quickRespawn = false,
  foesRespawnOnSight = false,
  alwaysSpawnRareGame = false,
  alwaysChain = false,
  autoLoot = false,
  foesDropAllItems = false,
  unlimitedStealableFoeItems = false,
  alwaysStealEverything = false,
  noMagickFields = false,
  noAntiLibra = false,
  noMinimapInterference = false,
  fullyRevealedMaps = false,
  unlimitedQuickeningChains = false,
  infiniteSummonTime = false,
  infiniteChocoboTime = false,
}

local configParameters = {
  expMultiplier = 2.00,
  lpMultiplier = 2.00,
  partyMovementSpeedMultiplier = 2.00,
}

return configStates, configParameters
```

</details>

Below is a list of all configurable options and what they are used for:

#### Config States

A list of all options and their state.

To enable an option, set their state to `true`, and to disable it, set it to `false`.

#### Config Parameters

A list of options with their configurable parameters.

For example: The option `LP Multiplier` with the parameter `2.00` would result in license points being multiplied by `2` after defeating a foe.


---

# 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://xeavin.gitbook.io/the-insurgents-bountiful-bundle/getting-started/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.
