# 0083: Неизвестный ID модели

Компилятор не смог определить ID модели при помощи `.ide` файлов, заданных для текущего [режима редактирования](https://app.gitbook.com/s/-M0dALM7uq5_eDYhSBjl-1508421016/edit-modes/#ide).

Это ошибка возникает в скриптах без заголовка (например, CLEO скрипте или скрипте с [директивой](https://app.gitbook.com/s/-M0dALM7uq5_eDYhSBjl-1508421016/coding/directives.md#usdexternal) `{$EXTERNAL}`), в которых все модели должны быть скомпилированы с использованием числового ID, определенного в `.ide` файле.

**Возможные решения**: используйте числовой ID модели вместо имени. Чтобы найти нужный ID воспользуйтесь встроенной в Sanny Builder функцией [конвертации имени](/ru/editor/options/hotkeys.md) модели в ID (`Ctrl+Alt+H`):

```
{$CLEO}

0107: $o = create_object #KEYCARD at 0 0 0 // ошибка, KEYCARD не найдено
0107: $o = create_object 1581 at 0 0 0 // верно
```

Если конфигурация режима редактирования ссылается на `.ide` файлы в директории игры, убедитесь, что эта директория задана в [опциях](https://app.gitbook.com/s/-M0dALM7uq5_eDYhSBjl-1508421016/options/general.md#direktoriya-igry) программы.


---

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