- Joined
- Jan 6, 2014
- Messages
- 35
- Reaction score
- 5
- Primarily Uses
I decided to implement my own title menu options, however this one has been bugging me for quite a while now.
Some of you might now, that if you want to start a new game, and go directly to the map your character's initial position is. This will me more a less the coding used for that task:
What I'm aiming for, is for a similar command, the only difference is that once selected, it will send me to another initial map instead. I have already tried adding a transfer player script equivalent ($game_player.reserve_transfer(16, 1, 14, 0)), however, it sends me to the real first map first, runs all parallel/autorun, and AFTER all that, it transfers my player, totally not what I want. Since player transfer isn't an option (for as much as I've tried),
I was wondering if there was another way to move my character directly to the map with ID 016, without going first to the one with the "initial player position" event.
(I already have a placeholder for the command, so it is pretty much reduced to knowing how to code it).
In case you were wondering, I created a map dedicated to unlockables, every time you unlock an image, trophy, etc. It will appear on that map (it already works, just need to get the title command to work)
Some of you might now, that if you want to start a new game, and go directly to the map your character's initial position is. This will me more a less the coding used for that task:
def command_new_game
Sound.play_ok
DataManager.setup_new_game
fadeout_all
$game_map.autoplay
SceneManager.goto(Scene_Map)
end
Sound.play_ok
DataManager.setup_new_game
fadeout_all
$game_map.autoplay
SceneManager.goto(Scene_Map)
end
I was wondering if there was another way to move my character directly to the map with ID 016, without going first to the one with the "initial player position" event.
(I already have a placeholder for the command, so it is pretty much reduced to knowing how to code it).
In case you were wondering, I created a map dedicated to unlockables, every time you unlock an image, trophy, etc. It will appear on that map (it already works, just need to get the title command to work)
Last edited by a moderator:

