> For the complete documentation index, see [llms.txt](https://lua.legacy.fatality.win/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lua.legacy.fatality.win/fatality/datatypes/config-value.md).

# Config Value

fatality.value

## Functions

### get\_int

returns the config value as an integer

`get_int( )`

### get\_float

returns the config value as a float

`get_float( )`

### get\_bool

returns the config value as a boolean

`get_bool( )`

### get\_color

returns the config value as a [csgo.color](/csgo/datatypes/color.md)

`get_color( )`

### set\_int

sets the config value to an integer value

`set_int( value )`

| Parameter | Data type |          Description         |
| :-------: | :-------: | :--------------------------: |
|   value   |  integer  | value to set config value to |

### set\_float

sets the config value to a float value

`set_float( value )`

| Parameter | Data type |          Description         |
| :-------: | :-------: | :--------------------------: |
|   value   |   float   | value to set config value to |

### set\_bool

sets the config value to a boolean value

`set_bool( value )`

| Parameter | Data type |          Description         |
| :-------: | :-------: | :--------------------------: |
|   value   |  boolean  | value to set config value to |

### set\_color

sets the config value to a [csgo.color](/csgo/datatypes/color.md) value

`set_color( value )`

| Parameter |                Data type               |          Description         |
| :-------: | :------------------------------------: | :--------------------------: |
|   value   | [csgo.color](/csgo/datatypes/color.md) | value to set config value to |
