# 0050: Недостаточно параметров для команды

Компилятор не может получить необходимое количество параметров для [дополнительной команды](/ru/coding/built-in-commands.md), [директивы](/ru/coding/directives.md) или члена [класса](/ru/coding/classes.md).&#x20;

Это происходит, если на данной строке недостаточно параметров, либо некоторые из них недопустимы. Число параметров для команд и директив закодировано в компиляторе и не может изменяться. Число параметров в классе зависит от соответствующего [опкода](/ru/edit-modes/opcodes-list-scm.ini.md).

**Возможные решения**: укажите требуемое количество параметров:

```
{$INCLUDE} // ошибка, требуемый параметр не указан
Player.Defined() // ошибка, требуемый параметр не указан
INC() // ошибка, ожидался один или два параметра

{$INCLUDE file.txt} // верно
Player.Defined($PLAYER_CHAR) // верно
INC($var) // верно
```


---

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