rpgmaker-plugins

cellicom_PartySaver

This is the cellicom_PartySaver plugin for RPG Maker MV/MZ, created by cellicom.

Description

This plugin allows you to save the current order of party members and reload or overwrite it later. This is particularly useful in situations where you need to temporarily change the party composition and restore the original order afterwards.

How to Use

You can interact with the plugin using script calls.

Get Party IDs

Returns a comma-separated string of the current members’ IDs:

cellicom.getPartyIds();

Save Party

Saves the party order to a variable. If variableID is not provided, it uses the default variable ID set in the plugin parameters:

cellicom.saveParty();
cellicom.saveParty(variableID); // Example: cellicom.saveParty(5);

Restore Party

Loads the party order from a variable. If variableID is not provided, it uses the default variable ID set in the plugin parameters:

cellicom.loadParty();
cellicom.loadParty(variableID); // Example: cellicom.loadParty(5);