# 0089: Opcode not found

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

**Possible solutions:** add a [directive](https://docs.sannybuilder.com/language/directives#usduse) `{$USE <extension_name>}` where `<extension_name>` is one of the [available extensions](https://docs.sannybuilder.com/edit-modes/extensions#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.
