> 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/0087.md).

# 0087: Invalid variable

The compiler finds an `ADMA` [variable](/language/data-types.md#variables) that is not a multiple of `4` and the [edit mode](/edit-modes.md) 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
```
