03-07-2008, 06:52 AM
Party Changer
Version: 3.3
Version: 3.3
Introduction
First of all, hello everybody! I'm Dargor. This is my first post on this forum but I'm not new to RMXP. That's not a welcome thread so I'll stop it right there!
This is Dargor's party changer!
Features
- Unlimited amount of available members (well, you're limited to rmxp's maximum amount of actors...)
- Selected actor's status displayed
- Possibility to change actors position in the party
- You can force members to be in the party.
- You can choose the maximum number of members to be in the party.
- Members who are not in the party can get a % of the EXP earned in battles.
- Possibility to lock the leader's position
- In-Battle Party Changer (Including max members, forced members and lock leader options)
- Compatible with large party scripts
- It's possible to use custom actor graphic, located in the Picture folder (ideal size would be 126x46)
- ADD-ON: You can call the party scene from the main menu (Requires the Party Arranger and Commands Manager script)
- ADD-ON: You can change your members position in the main menu (Requires the Party Arranger and Commands Manager script)
Demo
Version 3.3
http://www.freewebs.com/rmxp-ff/Party%20...%203.3.rar
Scripts
Commands Manager version 1.2:
http://www.freewebs.com/rmxp-ff/Dargor%5...F1%5F2.txt
Party Changer version 3.3:
http://www.freewebs.com/rmxp-ff/Dargor%5...F3%5F3.txt
Party Changer (Main Menu) version 1.5:
http://www.freewebs.com/rmxp-ff/Dargor%5...F1%5F5.txt
Party Arrange version 1.2:
http://www.freewebs.com/rmxp-ff/Dargor%5...5F2txt.txt
Large Party version 1.3:
http://www.freewebs.com/rmxp-ff/Dargor%5...F1%5F3.txt
Interpreter Script Fix (If I were you, I'd take this little script too. It's not an absolute necessity but it'll will fix an annoying bug when setting booleans to false with the call script command. Trust me, you need this :) ) :
http://www.freewebs.com/rmxp-ff/Dargor%5...%5FFix.txt
Party Changer version 4.1 compatible with RMXP SDK 2.3: http://ff6sdk.webs.com/Emailed/XP_Party_Changer_4.1.txt
You can find the latest version of the Commands Manager here.
IMPORTANT
You must have Commands Manager version 1.2 or higher in order to make Party Arrange and Party Changer (Main Menu) work.
Instructions
Place the script above Main
Call the scene:
Use $scene = Scene_Party.new(min_members, max_members, forced_members, locked_members)
min_members is the minimum number of actors the party must have.
max_members is the maximum number of members the party can have.
forced_members is an array containing the id of actors forced to be in the party.
locked_members is an array containing the id of actors forced to be locked in the position defined
by their index in forced_members.
Setting up Menu and Battle arguments:
Menu/Battle Party Changer arguments are located in Game_Temp and works exactly like calling the scene.
Code:
@battle_party_args = [1, 4,[],[]]
@menu_party_args = [1, 4,[],[]]
Same thing for @battle_party_args.
[b]Custom actor graphics:[/b]
If you want custom actor graphics, you must place your pictures into the Picture folder. The name must be Actor_[actor_name] and an ideal size would be 126x46. Note that pictures will automatically be resized to fit the window and cursor rectangle.
This feature can be toogled with
Code:
$game_temp.use_custom_graphic = flag
None.
Compatibility
Should be compatible with everything.
Credits and Thanks
Don't forget to give me credits!
Author's Notes
The script automatically adds a member to the members array when using the event command 'Change Party Member'.