The RPG Maker Resource Kit

RMRK RPG Maker Creation => RPG Maker General => General Tutorials and Eventing => Topic started by: Michus on July 22, 2012, 12:39:50 PM

Title: World Map viewing/scrolling event [RPGMaker XP][Solved]
Post by: Michus on July 22, 2012, 12:39:50 PM
I made a custom menu option and set it to activate a switch which triggers a common event to bring up an (already made) image of the world map.

That part is working fine, but with the world map image up I haven't been able to figure out a way to allow the player to navigate it (make the image scroll).  And the one time I managed to get it to work it also moved the player on the game map they were on.

How would you go about this?  I've been using conditional branches which wait for the player to press left, right, down, up, etc to make the map scroll but these don't seem to be working, or I haven't implemented them to work properly.

Any suggestions or has anybody had any experience doing this before?

(The reason I made the menu activate the common event is because I wouldn't know how to write the script for this)
Title: Re: World Map viewing/scrolling event
Post by: D&P3 on July 22, 2012, 05:46:31 PM
Make a parallax map for the world map and do your eventing on that map.
Title: Re: World Map viewing/scrolling event
Post by: Michus on July 22, 2012, 06:09:05 PM
Doh, rookie mistake, this is for RPG Maker XP not VX, does that make a difference?  I'm looking into this parallax information for RPG Maker right now.
Title: Re: World Map viewing/scrolling event [RPGMaker XP]
Post by: Michus on July 24, 2012, 09:17:17 AM
I solved the problem by making the world map an actual map and transferring the player there and turning their graphic into a selection cursor.  It took a while to get to work properly but it is working now.  Thanks for the advice though!