0087: Invalid variable
Data types in these games only allow addressing variables storage by offsets that are multiples of
4
.Possible solutions: change the variable to be a multiple of
4
: &3 = 0 // error
&4 = 0 // OK
Last modified 3yr ago