The RPG Maker Resource Kit

RMRK RPG Maker Creation => XP => Topic started by: Cogarin Doozy on June 07, 2010, 11:21:38 PM

Title: Access map from menu. (RPG Maker XP)
Post by: Cogarin Doozy on June 07, 2010, 11:21:38 PM

Could I make a world map viewable from the menu? It would be nice if there could also be some indicator that shows where you are, but just having the map available to look at would be fine.

I just started using RPG Maker XP a couple of days ago, so I am not at all familiar with scripting, but I think I have a pretty good handle on the event system. And I already made the map -- I just want a way to make it accessible (visually, not interactively) from the in-game pause menu.
Title: Re: Access map from menu. (RPG Maker XP)
Post by: Mjustin on June 08, 2010, 09:20:21 AM
You won't be able to access it from the menu without scripting (unless you use an event-based menu system). I'm not too familiar with scripting, but I can show you how to show the world map from the in-game map. Look at the image I attached and replicate it and you've got a basic way to show a world map from gameplay without annoying button problems. Make sure you make it a common event set to parallel process.

For an indicator just display a picture of a cursor or something over the world map in a certain place depending on what map the player is in.


EDIT: Or you could make an item that calls a common event similar to the one in the picture.
Title: Re: Access map from menu. (RPG Maker XP)
Post by: Cogarin Doozy on June 08, 2010, 10:21:29 PM
You won't be able to access it from the menu without scripting (unless you use an event-based menu system).

How can I make an event-based menu system?
Title: Re: Access map from menu. (RPG Maker XP)
Post by: Mjustin on June 08, 2010, 10:55:01 PM
With lots of pictures, variables, and conditional branches.
Title: Re: Access map from menu. (RPG Maker XP)
Post by: Cogarin Doozy on June 08, 2010, 11:09:02 PM
I would imagine so. I just would like to know how to start -- I think I could figure it out from there. How do I make it so that when the pause button is pressed, it goes to my menu rather than the default one?
Title: Re: Access map from menu. (RPG Maker XP)
Post by: cozziekuns on June 08, 2010, 11:17:55 PM
Disable Menu Access.
Check if the B button is pressed.
Title: Re: Access map from menu. (RPG Maker XP)
Post by: Cogarin Doozy on June 08, 2010, 11:58:22 PM
Thanks.