# Language

- [Intro](https://wiki.redmodding.org/redscript/language/intro.md)
- [REDscript in 2 minutes](https://wiki.redmodding.org/redscript/language/intro/redscript-in-2-minutes.md)
- [How to create a hook](https://wiki.redmodding.org/redscript/language/intro/how-to-create-a-hook.md): Creating a hook (with code snippets)
- [Things to hook](https://wiki.redmodding.org/redscript/language/intro/how-to-create-a-hook/things-to-hook.md)
- [Language Features](https://wiki.redmodding.org/redscript/language/language-features.md): How the fuck do I...
- [Intrinsics](https://wiki.redmodding.org/redscript/language/language-features/intrinsics.md): Intrinsics are low-level operations that are natively supported in REDscript.
- [Loops](https://wiki.redmodding.org/redscript/language/language-features/loops.md)
- [Strings](https://wiki.redmodding.org/redscript/language/language-features/strings.md): How to get shit done with strings
- [Modules](https://wiki.redmodding.org/redscript/language/language-features/modules.md): Introduction to modules.
- [Annotations](https://wiki.redmodding.org/redscript/language/language-features/annotations.md): Annotations are special keywords that you can use to change or extend the behavior of existing methods and classes in the base game. You cannot use annotations to modify modded methods or classes.
- [Conditional compilation](https://wiki.redmodding.org/redscript/language/language-features/conditional-compilation.md)
- [Configurable user hints](https://wiki.redmodding.org/redscript/language/language-features/configurable-user-hints.md)
- [Built-in Types](https://wiki.redmodding.org/redscript/language/native-types.md): Built-in types available in the game runtime.
- [Built-in Functions](https://wiki.redmodding.org/redscript/language/built-in-functions.md): Built-in functions available in the game runtime.
- [Math](https://wiki.redmodding.org/redscript/language/built-in-functions/math.md)
- [Random](https://wiki.redmodding.org/redscript/language/built-in-functions/random.md)
- [Utilities](https://wiki.redmodding.org/redscript/language/built-in-functions/utilities.md)


---

# 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://wiki.redmodding.org/redscript/language.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.
