The RPG Maker Resource Kit

RMRK RPG Maker Creation => Requests => Script Request => Topic started by: &&&&&&&&&&&&& on February 07, 2015, 08:15:35 PM

Title: RPG VX ACE - Menu option takes you to a map
Post by: &&&&&&&&&&&&& on February 07, 2015, 08:15:35 PM
If this already exists then could you point me in the right direction?

If it doesn't, all I'm looking for is a menu option that takes you to a certain map, and within that map pressing "x" takes you back to the menu and places the player back where they were when they first opened the menu.

Player is in forest map
Opens menu and chooses "Skills"
Player is placed in Skill Level Up map
Player finishes leveling skill and hits X
They are returned to forest map with menu open
Title: Re: RPG VX ACE - Menu option takes you to a map
Post by: Zexion on February 08, 2015, 05:42:35 AM
I assume you know where to put this :
Code: [Select]
$game_temp.fade_type = fade
$game_player.reserve_transfer(map_id, x, y, direction)
Code: [Select]
# Fade/Fade Style =  [0; Default, Black], [1] White, [2] None
# For direction: [0; Default, Retain], [2] Down, [4] Left, [8] Up, [6] Right

Copied from rpgmakerweb
Title: Re: RPG VX ACE - Menu option takes you to a map
Post by: &&&&&&&&&&&&& on February 08, 2015, 05:45:46 AM
Yes. :)

It's annoying they removed them the event menu. Did they have it in XP, or was that only in 2k and 2k3?
Whatever.

Thank you.