# Configuration

The state of all optional features are loaded from the `{game}/x64/scripts/config/TheInsurgentsCompanionsConfig.lua` file when opening the game. This configuration file can be modified via any text editor.&#x20;

The configuration shown below is the default:

<details>

<summary>Default Configuration</summary>

```lua
local configStates = {
  partyInTowns = true,
  partyEquipmentInTowns = true,
  esperWithFullParty = true,
  collectGuestEquipment = true
}

local configParameters = {
  --0:Leader Only, 1:Full Party
  partyInTowns = 1,
  
  --0:Hide, 1:Show
  partyEquipmentInTowns = 0
}

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 `Party In Towns` with the parameter `1` would result in the full party being available in towns.
