Skip to main content

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

Hello, I like your plugin, i have a question, Can I select for example, tutorial and how i can teleport my character with fade effect too my map,x,y cordinate?

Hi, yes you should be able to put this for your command JS:

const mapId = 1;
const x = 5;
const y = 5;
// do not edit below
DataManager.setupNewGame();
$gamePlayer.reserveTransfer(mapId, x, y, 2, 0);
this._commandWindow.close();
this.fadeOutAll();
SceneManager.goto(Scene_Map);