タイトル画面メニューに表示するコマンドをカスタマイズできるプラグイン – GALV_TitleCommands.js
- タイトル
- Allows you to customize what commands appear in the title screen menu.
- 作者名
- Galv - galvs-scripts.com様
- ヘルプ
- Galv's TitleCommands
----------------------------------------------------------------------------
This plugin was designed to control the command menu on the title screen.
If you use any plugins that add additional commands to this menu, you will
need to add them manually in the plugin settings.
HOW IT WORKS
------------
The plugin settings contains separate input boxes where you can set up
what commands display in the menu and condition required for each command.
--- Default Commands ---
The first box is for default menu commands and contains setup data for them.
For each menu command, the data is arranged as below:
Command Text,function,condition,hide
Command Text = The text that appears for the command button
function = Function name that controls what the command button does
condition = Condition that the command button will be enabled
hide = Make this true to set the command button to hide instead of
being disabled if the condition is not met. Leave it out
completely if not needed
For multiple commands, separate each command data with a | symbol. The
order of these commands changes the order of the buttons in the menu.
EXAMPLE:
New Game,new,always|Continue,con,isSave|Options,opt,always
Function quick text:
new = new game
con = continue
opt = options
quit = exit game
newPlus = New Game Plus (requires Galv's New Game Plus plugin)
credits = Credits (requires Galv's Roll Credits plugin)
Alternatively you can use a javascript function name of a function from
Scene_Title. If you are using another custom plugin that adds commands
to the menu, you will need to discover what the function is called for
that plugin and use it in the function text of the setting.
Condition quick text:
always = command is always enabled
isSave = only if a save file exists is it enabled
canNewGamePlus = if New Game+ active (requires Galv's New Game Plus)
Alternatively use javascript code relative to Scene_Title. (Advanced)
--- Mod Condition ---
This is javascript code (advanced users only). If this condition is true
then instead of showing the Default Commands, the title menu will instead
show the Mod Commands.
EXAMPLES:
DataManager.isAnySavefileExists() if there is an existing save game
Galv.NEWGP.games requires Galv's New Game Plus. Checks if any games
have new game plus activated
--- Mod Commands ---
Set these up exactly as the 'Default Commands' section above. If no Mod
Condition then this will not do anything. - パラメータ
-
param Default Commands desc The default title command list before the below Mod Condition is met default New Game,new,always|Continue,con,isSave|Options,opt,always param Mod Condition desc A condition that will use Mod Commands instead of default. Leave blank to not use. default param Mod Commands desc A title command list that will be used if the Mod Condition is met. default - ライセンス表記
- Terms of Use
https://galvs-scripts.com/terms-of-use/
紹介ページ https://galvs-scripts.com/category/rmmv-plugins/mv-whateverother/#post-1760