# 0089: Opcode not found

The compiler found a command that is not available with vanilla game and the [extensions](/edit-modes/extensions.md) used in this script.

**Possible solutions:** add a [directive](/language/directives.md#usduse) `{$USE <extension_name>}` where `<extension_name>` is one of the [available extensions](/edit-modes/extensions.md#extensions-list) defining this command.

For example, opcode `0BA2` in GTA III is only available with CLEO 2.0 and MemoryModule plugin. In order to make you aware of this extra dependency the compiler throws this error if it can't find `{$USE memory}`. For existing scripts adding this directive will be a one-time change to let it compile again.

```
{$USE memory}
```

If you're unsure which extension the command belongs to, go to [Sanny Builder Library](https://library.sannybuilder.com/) and find it there.


---

# 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://docs.sannybuilder.com/troubleshooting/errors/0089.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.
