Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: MZ Phileas's Choices Manager (advanced choices window management)
- Original author: Phileas
- Original date: November 8, 2025
- Source thread: https://forums.rpgmakerweb.com/threads/phileass-choices-manager-advanced-choices-window-management.180932/
- Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMZ)
Summary
Plugin name: Phileas's Choices Manager Author: Phileas Version: 1.0.0 for MZ Release date:
Archived First Post
Plugin name: Phileas's Choices Manager
Author: Phileas
Version: 1.0.0 for MZ
Release date:
1.0.0 - 2025.November.08
Plugin description:
The plugin extends the control of the election window:
1) Combining consecutive selection windows into one.
2) Hiding choices by condition.
3) Disabling choices by condition.
The functionality will be expanded according to user requests.
Parameters
1) "Combine Choices"
If there are several "Show Choices" commands in the event one after the other, their choices will be combined in one list, which will be reflected in one choices window.
Commands
1) "Hide Choice"
Hides the choice in the next choices window if the condition is fulfilled. The condition is set by the JS code.
Examples of conditions:
"true" - the choice is always hidden
"$gameSwitches.value(5) === false" - the switch with the index 5 is off
"$gameVariables.value(3) > 5" the variable with index 3 is greater than 5
2) "Disable Choice"
Disables the choice in the next choices window if the condition is met (similar to the previous command). The choice will be displayed in the window, but it cannot be selected.
Script calls
1) hideChoice(id, condition)
An analog of the "Hide Choice" command. Example:
hideChoice(2, "$gameSwitches.value(5) === false");
2) disableChoice(id, condition)
This plugin is compatible with my other plugins,
for example - Phileas_InputSubWindowsInMessage (displays choices inside the message window).
Code
License
This plugin is released under MIT license.
This means that you can freely use the plugin in non-commercial and commercial games and even edit it.
But be sure to include me in the credits!
Compatibility:
If there are any problems, write to me.
Author: Phileas
Version: 1.0.0 for MZ
Release date:
1.0.0 - 2025.November.08
Plugin description:
The plugin extends the control of the election window:
1) Combining consecutive selection windows into one.
2) Hiding choices by condition.
3) Disabling choices by condition.
The functionality will be expanded according to user requests.
Parameters
1) "Combine Choices"
If there are several "Show Choices" commands in the event one after the other, their choices will be combined in one list, which will be reflected in one choices window.
Commands
1) "Hide Choice"
Hides the choice in the next choices window if the condition is fulfilled. The condition is set by the JS code.
Examples of conditions:
"true" - the choice is always hidden
"$gameSwitches.value(5) === false" - the switch with the index 5 is off
"$gameVariables.value(3) > 5" the variable with index 3 is greater than 5
2) "Disable Choice"
Disables the choice in the next choices window if the condition is met (similar to the previous command). The choice will be displayed in the window, but it cannot be selected.
Script calls
1) hideChoice(id, condition)
An analog of the "Hide Choice" command. Example:
hideChoice(2, "$gameSwitches.value(5) === false");
2) disableChoice(id, condition)
This plugin is compatible with my other plugins,
for example - Phileas_InputSubWindowsInMessage (displays choices inside the message window).
Code
License
This plugin is released under MIT license.
This means that you can freely use the plugin in non-commercial and commercial games and even edit it.
But be sure to include me in the credits!
Compatibility:
If there are any problems, write to me.
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / Terms Note
License This plugin is released under MIT license. This means that you can freely use the plugin in non-commercial and commercial games and even edit it. But be sure to include me in the credits!
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...