0020: Variable is not declared as array

You're using a short array notation, but the array is not declared.

Possible solutions: declare the array using the var keyword:

var $items: array 10 of Int

$var[0] = 0

Last updated