PARTY CHANGER MENU SCRIPT

RPG Maker XP

Change party easily.

When you using RMXP, you’ll notice that when the party is full then you need to take out someone in your party before adding the other character. When you have small number of available characters, this wouldn’t be a problem as it can be solved using events and conditional branches. But what if you have a large ammount of them? Let’s say about a hundred of them or so? The eventing must be soo tiring.

This script will easen you as it gives you a menu where you can change characters inside the party with characters that is available to player with just a click, or presssing the confirmation button :v .

The script is have two modes, the Normal Mode and Information Mode.

The Information Mode is the same as the Normal Mode but there's a new window that showing the highlighted character information. The window is highly customizable, but I'd suggest if you want to use it to it's upmost potential, you should learn on some RGSS basic scripting regarding window content and such.

For those who doesn't have any experience in RGSS scripting, you can use the Normal mode or learn to customize the Information mode a bit from some placeholder script I've put in the default script. :)

Instruction :
# Set the characters that's available on the menu
$partychange = true
$game_map.refresh

So, if you want to put Character number 3 to be available in the party changer menu, put this on script call.
$partychange = true
$game_map.refresh

Change the value into false if you want to remove them from the menu.

# Calling the menu (Normal Mode)
To call the menu, put this on script call.
$scene = Scene_Party.new

# Calling the menu (Information Mode)
To call the menu with character information window available, put this on script call.
$scene = Scene_Party.new(0,1)

FAQ
Q : How to edit the Character Information Window on Information Mode?
A : Learn some basic RGSS scripting regarding the window and such. Then go to line 334 and feel free to edit things below those line.

Terms of Use
1. This script can be used on commercial or non commercial games, only if you credit me (Black Mage) properly
2. Please tell me about your game (Optional). I’ll be happy to play and review your game, assumed I have some times to spare :)

Website
In case you need help regarding the script, and somewhat I forgot to check here, please visit this site instead, since I'm spending my time a lot there.

# Website
burningwizard.wordpress.com

#Script's related page
https://burningwizard.wordpress.com/2014/12/28/party-changer-menu-script-rmxp-rgss/