Skip to main content

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

Hi, I'm curious, can I call a common event in "Js command"? If yes, how do I do it?

(1 edit)

Hi, yes the script call to call a common event is: $gameTemp.reserveCommonEvent(1);

Since common events can't run in the menu scenes by default, you would probably also want to return to the map which you can do by calling: this.popScene();

It worked, thank you very much.