For the complete documentation index, see llms.txt. This page is also available as Markdown.

0021: Incorrect variable name

The compiler expects an integer number for local variable names.

Possible solutions: use a valid integer number that meets the local variables limit for this game:

var@s = 'test' // incorrect
0@s = 'test' // correct

Last updated