Hi, I'm curious, can I call a common event in "Js command"? If yes, how do I do it?
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.