> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/troubleshooting/errors/0081.md).

# 0081: Too many actual parameters

The command is given more parameters than it expects.

For example, the `Inc` [command](/language/instructions/built-in-commands.md#inc) accepts either one or two parameters and supplying three would raise an error.

**Possible solutions:** check the related documentation and provide fewer parameters:

```
Sqr($var, 1) // error
Sqr($var) // OK
```
