Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: SilverLightning on April 11, 2006, 01:08:48 AM

Title: How do you...
Post by: SilverLightning on April 11, 2006, 01:08:48 AM
How do you fork a Condition becasue i need to know this
Title:
Post by: DragonBlaze on April 11, 2006, 01:28:17 AM
Go into the event commands, make a conditional branch/fork (it'll be called a fork in rm2k and a conditional branch in rm2k3).

Select what you want the condition to be (x switch ON/OFF, variable =, >, <, number, or whatever).

There will be a branch if statment and an end statement, place what you want to happen if the condition is met within these two statements.

If you want it to do a differant action if the condition is not met, select the checkbox for 'execute custom handler if condtion is not met". And place what you want to hapen if the condition is not met between 'else handler' and 'end'.

If you want something to have like 3 differant forks or conditions (example, branch differantly if variable = 1, 2, or 3). Just make 3 conditional branches.

I hope that helped.
Title:
Post by: SilverLightning on April 11, 2006, 01:44:03 AM
it did thank you so very much