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:

Default Configuration
local configStates = {
  peacefulMode = false,
  godMode = false,
  oneHitKill = false,
  fullPartyExperienceShare = false,
  expMultiplier = false,
  lpMultiplier = false,
  partyMovementSpeedMultiplier = false,
  foesRespawnOnSight = false,
  alwaysSpawnRareGame = false,
  alwaysChain = false,
  autoLoot = false,
  foesDropAllItems = false,
  unlimitedStealableFoeItems = 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

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.

Last updated