# 0083: Unknown model ID

The compiler is unable to resolve the model id using the `.ide` files configured for the current [edit mode](https://docs.sannybuilder.com/edit-modes#ide).

It may happen in a header-less script (e.g. a CLEO script or any script compiled with the `{$EXTERNAL}` [directive](/language/directives.md#usdexternal)) where all models must be compiled with their in-game id.

**Possible solutions:** use a model id instead of the name. To find the id use the Sanny's built-in [conversion tool](/editor/options/hotkeys.md) (`Ctrl+Alt+H`):

```
{$CLEO}

0107: $o = create_object #KEYCARD at 0 0 0 // error, can't find KEYCARD
0107: $o = create_object 1581 at 0 0 0 // OK
```

{% hint style="info" %}
Make sure a path to the game directory is set in the [options](/editor/options/general.md#game-directory) for the model id resolution to work properly.
{% endhint %}


---

# 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/0083.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.
