# 0087: Invalid variable

The compiler finds an `ADMA` [variable](https://docs.sannybuilder.com/language/data-types#variables) that is not a multiple of `4` and the [edit mode](https://docs.sannybuilder.com/edit-modes) targets Liberty City Stories or Vice City Stories.

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
```
