詳細については、「設定」を参照してください。 – RS_TitleManagerEx.js

タイトル
This plugin allows player to change resources of the title scene after the user has been ended a certain epilogue.
作者名
ヘルプ
=============================================================================
Plugin Features
=============================================================================

The RS_TitleManagerEx plugin allows you to dynamically change the title screen
resources (background images and music) after players complete specific epilogues
or endings in your game.

Key Features:

1. Dynamic Title Screen:
- Configure up to 4 different title screen variations (epilogues)
- Each epilogue can have unique background images and BGM

2. Epilogue Tracking:
- The plugin automatically tracks which endings the player has seen
- Use this information to unlock content or provide bonuses

3. Special Menu Command:
- Add a special command to the title menu after completing an ending
- This command can transfer players to a hidden/bonus map

4. Hidden Content Access:
- Allow access to post-game content through the special command
- Create New Game+ or gallery features

=============================================================================
Plugin Commands
=============================================================================

1. Setting an Epilogue as Completed:
When a player reaches an ending, use this command:

Ending Setup ending1 For the first epilogue
Ending Setup ending2 For the second epilogue
Ending Setup ending3 For the third epilogue
Ending Setup ending4 For the fourth epilogue

2. Resetting All Epilogues:
To reset the title screen to its original state:

Ending RemoveAll

=============================================================================
JavaScript API
=============================================================================

1. Check if an Epilogue is Completed:

if ($gameMap.isClearEnding("ending1")) {
Code to execute if ending1 is completed
E.g., unlock special content, show different dialogue
}

2. Get All Completed Epilogues:

const completedEndings = $gameMap.getEnding();
console.log("Completed endings:", completedEndings);
Example output: ["ending1", "ending3"]

3. Count Completed Epilogues:

const endingCount = $gameMap.getEnding().length;
console.log(`Player has seen ${endingCount} out of 4 possible endings`);

Calculate completion percentage
const completionPercentage = (endingCount / 4)100;
console.log(`Game completion: ${completionPercentage}%`);

=============================================================================
Implementation Examples
=============================================================================

Example 1: Setting Different Epilogues Based on Player Choices
-----------------------------------------------------------------------------

Place this in your ending event
if ($gameSwitches.value(10)) { Good Ending switch
this.pluginCommand('Ending', ['Setup', 'ending1']);

Show message about unlocking the good ending
this.showText("Good Ending Achieved!");
this.showText("The title screen has been changed to reflect your heroic journey.");

} else if ($gameSwitches.value(11)) { Bad Ending switch
this.pluginCommand('Ending', ['Setup', 'ending2']);

Show message about unlocking the bad ending
this.showText("Dark Ending Achieved!");
this.showText("The title screen now reflects the darkness of your path.");
}

Example 2: Creating a New Game+ Feature
-----------------------------------------------------------------------------

function setupNewGamePlus() {
Check if player has completed any ending
if ($gameMap.getEnding().length > 0) {
Set up a new game
DataManager.setupNewGame();

Add bonuses based on which endings were completed
if ($gameMap.isClearEnding("ending1")) {
$gameParty.gainGold(1000); Bonus gold from good ending
$gameParty.gainItem($dataItems[5], 3); Special items
}

if ($gameMap.isClearEnding("ending2")) {
$gameParty.members()[0].addParam(2, 5); +5 ATK to leader
}

if ($gameMap.isClearEnding("ending3")) {
Special weapon from secret ending
$gameParty.gainItem($dataWeapons[15], 1);
}

Set a switch to indicate New Game+
$gameSwitches.setValue(15, true);

Start the game
SceneManager.goto(Scene_Map);
}
}
=============================================================================
Storage Mechanism
=============================================================================

The plugin stores epilogue data persistently:
- Desktop games: In a file called "ending.dat" in the save directory
- Web games: In browser localStorage with key "RPG Ending"

This ensures players will continue to see the updated title screen even after
closing and reopening the game.

=============================================================================
Change Log
=============================================================================
2015.12.21 (v1.0.0) - First Release.
2015.12.22 (v1.0.2) - Fixed a bug about the web local storage.
2016.03.07 (v1.0.3) - Fixed a bug that causes a serious problem when the parameters were set to English.
2017.06.09 (v1.0.4) - Fixed the parameter not to remove the resource when deploying the game.
2017.07.23 (v1.0.5) - Fixed the incorrect description
2018.08.28 (v1.0.6) - Fixed the inccorect plugin parameter's name.
2018.12.01 (v1.0.7) :
- Fixed the issue that couldn't playback the BGM.
パラメータ
param Epilogue 1

param ep1 Title1
text Title 1
parent Epilogue 1
desc Specify the title 1 image.
default Book
require 1
dir img/titles1/
type file

param ep1 Title2
text Title 2
parent Epilogue 1
desc Specify the title 2 image.
default
require 1
dir img/titles2/
type file

param ep1 BGM
text BGM
parent Epilogue 1
desc Specify the BGM file
default Theme1
require 1
dir audio/bgm/
type file

param Epilogue 2

param ep2 Title1
text Title 1
parent Epilogue 2
desc Specify the title 1 image.
default Devil
require 1
dir img/titles1/
type file

param ep2 Title2
text Title 2
parent Epilogue 2
desc Specify the title 2 image.
default
require 1
dir img/titles2/
type file

param ep2 BGM
text BGM
parent Epilogue 2
desc Specify the BGM file.
default Field2
require 1
dir audio/bgm/
type file

param Epilogue 3

param ep3 Title1
text Title 1
parent Epilogue 3
desc Specify the title 1 image.
default Book
require 1
dir img/titles1/
type file

param ep3 Title2
text Title 2
parent Epilogue 3
desc Specify the title 2 image.
default
require 1
dir img/titles2/
type file

param ep3 BGM
text BGM
parent Epilogue 3
desc Specify the BGM file.
default Theme1
require 1
dir audio/bgm/
type file

param Epilogue 4

param ep4 Title1
text Title 1
parent Epilogue 4
desc Specify the title 1 image.
default Book
require 1
dir img/titles1/
type file

param ep4 Title2
text Title 2
parent Epilogue 4
desc Specify the title 2 image.
default
require 1
dir img/titles2/
type file

param ep4 BGM
text BGM
parent Epilogue 4
desc Specify the BGM file.
default Theme1
require 1
dir audio/bgm/
type file

param Location

param Map ID
parent Location
desc Specify the id of hidden map. This can move to a hidden map through a newly created command
type number
default 1

param Map X
parent Location
desc Specify the starting point of hidden map. This can move to a hidden map through a newly created command
type number
min 0
default 0

param Map Y
parent Location
desc Specify the starting point of hidden map. This can move to a hidden map through a newly created command
type number
min 0
default 0

param Additional Command

param Specific Command
parent Additional Command
desc Specify the command name. This can move to a hidden map through this command
type text
default Specific Command

param Show Specific Command
text Show
parent Additional Command
desc Decide whether the command window is visible.
type boolean
default true
on visible
off hide

ライセンス表記
  • MIT License
The MIT License
Copyright (c) 2015 biud436
Free for commercial and non commercial use.

紹介ページ https://github.com/biud436/MV/blob/master/RS_TitleManagerEx.js