Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

[Fixed in 1.0.63+] Expected an index

A topic by Enes Kaplan created Nov 02, 2022 Views: 205 Replies: 2
Viewing posts 1 to 2
(4 edits)

When I run the game normally, there is no problem, but when gmlive is active, I get this error:


how can i solve this problem?


Developer

This is because instance functions now return a new ref type instead of instance IDs.

A workaround would be to find

return "Expected an index";

in GMLive script and replace it with return "".

Thank you so much!