Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.
I have the code to call a common event, which transfers you, from the main menu. The only problem is that it waits until you exit the menu to transfer. Is there anyway to make it close the menu right when you press it?
# Play music
$game_system.se_play($data_system.decision_se)
# Switch to Map
@menu_disabled = true
# Call Common Event
$game_temp.common_event_id = 15
# Dispose of windows
@command_window.dispose
@playtime_window.dispose
@steps_window.dispose
@gold_window.dispose
@status_window.dispose
EDIT:
I was able to do it with this:
Code:
$scene = Scene_Map.new
It exits to the map the menu was opened on, but right after switches to the new map.
This topic has been resolved. If Giam or any other users have any questions or further problems regarding this topic, please create a new thread about them.