Kyonides's Forgotten Heroes - KFH - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker VX/VXAce (RGSS2/3) Engines (https://www.save-point.org/forum-117.html) +---- Thread: Kyonides's Forgotten Heroes - KFH (/thread-64.html) |
Kyonides's Forgotten Heroes - KFH - kyonides - 07-08-2010 FORGOTTEN HEROES (KFH)
by Kyonides-Arkanthos
PURPOSE OF THIS SCRIPT This menu script allows the game maker to reduce the player's current maximum party size at any time if deemed necessary. To use the script, just go to PartySettings module and edit the MINSIZE constant like this... MINSIZE = 0 # Any hero might be removed from the team MINSIZE = 2 # the first 2 heroes cannot be removed You can find more details on Constants and other stuff in my script. SCRIPT CALL $game_temp.maxsize = 3 # Any Number Lower than Current Maximum Party Size Once you change the value of this variable, the game will open a new menu window / scene where you may choose who's going to be removed from your party. SCRIPT & DOWNLOADS Download DEMO & SCRIPT BUGS None yet. NOTES On July 8th I released a slightly revised version of this script because I forgot to include a modification to the add_actor method so it doesn't allow you to add new party members unless you change the maximum party size first. |