# API Documentation

- [bit](https://gamesensical.gitbook.io/docs/developers/globals/bit.md): LuaJIT library for bitwise operations
- [client](https://gamesensical.gitbook.io/docs/developers/globals/client.md): General game- and cheat-related functions
- [config](https://gamesensical.gitbook.io/docs/developers/globals/config.md): Configuration related lua functions
- [cvar](https://gamesensical.gitbook.io/docs/developers/globals/cvar.md): A table letting you get and set the value of cvars and invoke their callbacks. Uses Object-oriented format
- [database](https://gamesensical.gitbook.io/docs/developers/globals/database.md): Persistent storage engine that lets you store values between reloads / reinjects
- [entity](https://gamesensical.gitbook.io/docs/developers/globals/entity.md): Functions for getting and setting entities and entity data.
- [globals](https://gamesensical.gitbook.io/docs/developers/globals/globals.md): Functions for getting game globals such as the server time and map name.
- [json](https://gamesensical.gitbook.io/docs/developers/globals/json.md): JSON encoding / parsing functions, based on lua-cjson
- [materialsystem](https://gamesensical.gitbook.io/docs/developers/globals/materialsystem.md): Functions controlling the CS:GO Material System, letting you modulate, swap, remove materials and set their shader params / material vars
- [panorama](https://gamesensical.gitbook.io/docs/developers/globals/panorama.md): API to interact with CS:GO's panorama UI
- [plist](https://gamesensical.gitbook.io/docs/developers/globals/plist.md): Functions for interacting with the player list
- [renderer](https://gamesensical.gitbook.io/docs/developers/globals/renderer.md): Functions for drawing visuals. Usually won't work outside the \`paint\` event.
- [ui](https://gamesensical.gitbook.io/docs/developers/globals/ui.md): Functions for interfacing with the gamesense menu
- [vector](https://gamesensical.gitbook.io/docs/developers/globals/vector.md): Built-in vector library, loaded by requiring vector


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gamesensical.gitbook.io/docs/developers/globals.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
