Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

That would mean that you inserted a live_call outside of any function

if (live_call()) return live_result; // don't
function some() {
  if (live_call()) return live_result; // good
}

and it's being called before GMLive initializes.