The RPG Maker Resource Kit

RMRK RPG Maker Creation => VX => VX Event Systems => Topic started by: Revtattertot on April 16, 2012, 12:54:47 AM

Title: [VX] Treasure Scan Eventing Tutorial
Post by: Revtattertot on April 16, 2012, 12:54:47 AM
A Treasure Scan Tutorial/Recipe for RPG Maker VX
Author:
Revtattertot



So, I came up with a basic string of events for a little scanning system I am going to implement in Rendered Fate, and I figured I'd give publicizing it a go. Please note this tut is written with the assumption that you won't need screenshots or help, there's boundless other tuts that explain how an event system can work and such, I figure people can find out what I'm talking about.

Here is what you'll need:

Part 1:

To start, make you scan skill that calls the 2nd common event. Make sure you can only cast it outside of a combat situation.

Next, set the 2nd common event with a conditional branch, whether or not the switch is turned on or not.

 - If yes, call the 1st event.

 - If no, create either a textbox or SE setup signifying failure. [You can really do whatever here, these are just the simplest to do.]

For the 2nd common event, have it include 3 variable-based conditional branches. [or more, add to style][2 control 1 variable, 1 controls the other.] Make SURE that the branches are separate from each other or it will not work properly.

The 1st variable branch wil determine whether or not you find money or a powerup. Have its condition whether or not the 1st variable is equal to 1. [or whatever # you choose]

 - If yes, have it give a random amount of money and show a text showing exactly how much.

 - If no, have it give a random amount of a certain powerup with a text bow showing it.

The 2nd variable branch will determine whether or not you find a "monster-in-a-box" enemy or an item of your choosing. its condition should determine whether the 2nd variable is equal to 1. [or whatever # you choose]

 - If yes, have it process a selected boss battle from what the 3rd variable decides. Try to let it select from a strict amount of battles, but ultimately that is your choice. Keep the text box for the explanation.

 - If no, have it give the item you specified with a text box showing it.

The 3rd variable branch will determine a random stock of restoratives or a special event of your choice. Have its condition determine whether or not the 1st variable is equal to 2. [or whatever # you choose.]

 - If yes, have it give an amount of restoratives, you "can" use variables for this, but it's your choice, so that's optional. Don't forget the revealing textbox.

 - If no, have it do a special event of your choice, with that all important textbox explaining it.

PART 2:

This is for events that trigger the scan system. Each individual event must consist of actually FIVE event tiles, 1 on the tile you want, and 1 on adjacent tiles, creating a plus sign shape. This is where the switch comes in. Have the center event tile activate the switch, and the outer tiles de-activate it. have it set up so that when you scan the center tile, it triggers the event system and activates a self-switch leading to a dis-allowing page.



Do this, and your scan system should work.

If this was helpful, or if you have advice to refine, change, or remake entirely the system, let me know. I'm pretty sure events systems won't require credit due to their IMMENSE customizability, so do what you will with it.

Cheers,
Revtattertot.
Title: Re: [VX] Treasure Scan Eventing Tutorial
Post by: evildrspock on May 20, 2012, 11:58:48 AM
Hey, thanks for the recipe idea, this gives me an idea for a plot device skill that will let the player scan previously visited maps to find missing puzzle pieces/random encounters, information or items that may or may not be useful.  What a nice idea for giving players reasons to revisit old areas.  Kudos to the sharing of good ideas!
Title: Re: [VX] Treasure Scan Eventing Tutorial
Post by: Revtattertot on May 20, 2012, 04:56:58 PM
The good thing about this is that it's a bare-bone event, meaning you can add what all you want to it and it can still run.
Title: Re: [VX] Treasure Scan Eventing Tutorial
Post by: evildrspock on May 21, 2012, 03:51:11 AM
Kinda makes me think of the x-ray visor in Super Metroid.  You suddenly have reasons to go search the whole game you already explored, as well as finding new clues in new areas.