This question is more related to the Multiple Parties script than the Party Changer.
Anyway, to create another party, use this in a script call :
actor_id is the of the actor you want to be added to the second party
party_id is the id of the new party. I recommend using 1
When you load the game, you should automatically start with the party you were using when yuo saved the game.
Anyway, to create another party, use this in a script call :
Code:
party = Game_Party.new
party.add_actor(actor_id)
$game_parties[party_id] = party
actor_id is the of the actor you want to be added to the second party
party_id is the id of the new party. I recommend using 1
When you load the game, you should automatically start with the party you were using when yuo saved the game.