Name vs Identifier

General

You can either use the name or identifier of an action in the configuration file.

For example, if you want to include Sleep in the possible selectable actions, you can do it via identifiers like this:

{61, 5.00}

or via names like this:

{actions.sleep, 5.00}

or this:

{actions["sleep"], 5.00}

All names are case insensitive, so you can even use action.SlEeP if you want.

Names give a better overview of the configuration file while identifiers keep it shorter and a bit more neatly formatted. You can choose whichever style you prefer more.

Notes

For a list of all names, you can view the {game}/x64/scripts/config/TheInsurgentsCuratedShades/helpers.lua file.

The 2nd style (e.g. actions.sleep) can not be used with names that:

  • Start with a number (e.g. 1000needles)

  • Include non-latin characters (e.g. cúchulainn)

  • Are a Lua instruction (e.g. break)

For such cases, you must use the 3rd style instead (e.g. actions["sleep"]).

Last updated