Main Menu
  • Welcome to The RPG Maker Resource Kit.

Access map from menu. (RPG Maker XP)

Started by Cogarin Doozy, June 07, 2010, 11:21:38 PM

0 Members and 1 Guest are viewing this topic.

Cogarin Doozy


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.

Mjustin

#1
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.

Cogarin Doozy

Quote from: 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).

How can I make an event-based menu system?

Mjustin

With lots of pictures, variables, and conditional branches.

Cogarin Doozy

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?

cozziekuns

Disable Menu Access.
Check if the B button is pressed.

Cogarin Doozy