Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: Flamehawk27 on July 19, 2008, 07:23:09 PM

Title: Change Max Party Members
Post by: Flamehawk27 on July 19, 2008, 07:23:09 PM
How do I change the maximum number of party members? Specifically, from 4 members to 3 members maximum...
Title: Re: Change Max Party Members
Post by: Rahl on July 19, 2008, 07:24:51 PM
Don't think that's possible and if it is I have no idea how..
Title: Re: Change Max Party Members
Post by: Prpl_Mage on July 19, 2008, 07:56:52 PM
Quite easy actually.

Make a variable called "Number of party members" or something like that so you can remember it.
Then create a parrallel proccess that simply got the "Variable Operation": Set [Number of party members] equal to "Size of party"(Can be found at the bottom of the list under "Other")

Then make another parralel procces with the "Conditional branch": IF [Number of party members] is equal to [4]
Then just add whatever you want to happen. Like, removing all the party members and making the player do three choices of wich ones they want. Or, just removing some character at random.

The easiest way though, would be to just not add a fourth party member at all... No problem there, you'll only have 3.
Title: Re: Change Max Party Members
Post by: Flamehawk27 on July 19, 2008, 09:19:43 PM
Lol, that would be easy. But thanks, that was a great description that I could actually follow, instead of running for the tylenol. I'll give credit to that in my game, but you should post that in tutorials, it's helpful.