Charas-Project
Game Creation => Requests => RPG Maker Programming => Topic started by: snakestealth2000 on April 08, 2010, 07:21:38 PM
-
Hey, I have recently fell in love with rpg maker 2003. I know how variables work and switches and how saving events work, but I can't seem to find a way to make things happen when people pick a particular choice in the "show choices" event. Does anybody know how to help me with this? Also, I'm sorta new.. so don't be too harsh.
-
The show choices is actually a pretty simple event.
You can fill up to 4 different choices, leave them blank to limit the choices.
You can also choose wich choice will be chosen if the player simply press he cancel button, this will usually be No.
If you look at the event structure after creating a Show Choice you will see that the name of the choices have been added. kinda like this.
<>Message:Do you want a sword?
<>Show choices:Yes/No/I want an axe!
[Yes]handler:
<>Add item: Short sword, 1
[No]handler
<>Message: Then sod off!
[I want an axe!]handler
<>message:Axes are for dwarves!
_________________________________________-
Pretty much - the things you put under the handlers are the things that will happen once you choose them.