> For the complete documentation index, see [llms.txt](https://docs.sasavn.ru/cs2_lua/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sasavn.ru/cs2_lua/documentation/namespaces/config.md).

# Config

## Functions

| Function                       | Arguments                                          |
| ------------------------------ | -------------------------------------------------- |
| float GetFloat(name, default)  | string - name; float - default (set if not finded) |
| float GetFloat(name)           | string - name (0 if not founded)                   |
| SetFloat(name, value)          | string - name; float - value                       |
| boolean GetBool(name, default) | string - name; bool- default (set if not finded)   |
| boolean GetBool(name)          | string - name (false if not founded)               |
| boolean SetBool(name, value)   | string - name; bool- value                         |
| int GetInt(name, default)      | string - name; int- default (set if not finded)    |
| int GetInt(name)               | string - name (0 if not founded)                   |
| int SetInt(name, value)        | string - name; int - value                         |
