Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GMLive.gml

Livecoding for GameMaker: Studio / GameMaker Studio 2 · By YellowAfterlife

[Fixed in 1.0.63+] Expected an index

A topic by Enes Kaplan created Nov 02, 2022 Views: 158 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!