This is the cellicom_PartySaver plugin for RPG Maker MV/MZ, created by cellicom.
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.
You can interact with the plugin using script calls.
Returns a comma-separated string of the current members’ IDs:
cellicom.getPartyIds();
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);
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);