Hi, it seems to be working for me, the basics are to 1) Set up your MP4 videos in the plugin parameters -> Videos -> MP4, 2) Play a movie with the same name via the Play Movie event command.
Note that the editor only displays .webm movie files. Plugins cannot modify the editor, so to get around this RPG Maker limitation you will need to create a blank .webm file of the same name to be able to select the file in the editor, however as long as you have the plugin parameters set up to load an mp4 for that video file it will show the mp4 video.
Casper Gaming
Creator of
Recent community posts
Hi, all note tags should be in the plugin documentation, you can also find it on my website: https://www.caspergaming.com/plugins/cgmz/encyclopedia/documentation/
In general, I use note tags sparingly in my plugins. Most things are set up in the plugin parameters instead. You can add a Custom Info for the bestiary to write a custom name if you want, then add the Custom Info line item to be drawn in the Display Info parameter.
Hi, yes I provide support for all of my plugins, they should be easy to learn but if not you can reply here in the comments or if the issue is more complicated I recommend coming into my discord so it is easier to attach pictures and have quicker back & forth messages. All of my plugins also have a wiki page and online documentation.
Hmm there is currently no way for the user to select between different dice in the dice roll scene. You could event this beforehand via event commands (show choices -> do you want d4 or d20?) and then call a different dice roll based on that. You could then exit the scene and ask them what they want to roll next.
The rolling multiple dice at once is also not in the plugin yet, but it is planned for a future update.
Hi, for some reason it seems like it thinks you need the Delete Rename window (you have either Show Delete or Show Rename enabled in the plugin parameters) but that window doesn't seem to have gotten created, so it is undefined and when it goes to activate that window it crashes.
I did a little investigation and was not able to reproduce this myself, so I am wondering if there is some potential plugin conflict here that is causing that window to not get created. Could you try on your end to turn non-CGMZ plugins OFF temporarily and see if the issue no longer occurs? If so, it would point toward a plugin conflict. If you are still able to reproduce with [CGMZ] plugins only, can you let me know your Save File plugin settings?
No worries, I am glad you like the plugins 😁
If you have a complicated picture set up, you might be better asking for help in my Discord where you can more easily post screenshots of your setup and get quicker responses. I don't mind helping in comments if you prefer that, but imo it is much more limited for complex situations
Hi, I am not quite sure I understand. If you have a picture with an attached common event, it will run the common event every time you click the picture by default, it doesn't only run once and then need to be re-attached.
As far as I am aware, pictures are layered in the order they are created (Picture #5 appears above Picture #4). This is default RPG Maker MZ behavior, and [CGMZ] does not change that. If you are not seeing that behavior, you may have another plugin that affects how pictures are drawn.
Hi, I believe it should work if you put "Escape" (case sensitive) instead of "ESC", but it might get confused with the menu depending on which code gets called first. If you have pictures that require hitting escape up, I would recommend to disable the menu when the picture gets its escape attachment and re-enable the menu when the picture is erased in your common event. You can enable/disable the main menu via Event Command (Page 3 -> System Settings -> Change Menu Access)
Hi, yes you can do that through script call, although it is a bit complicated. You can use the following code, only needing to change the variable id at the top to whatever variable you want to use:
const variableId = 1; // only change this line to your variable id you want
// do not change anything below
const oldDay = Math.floor($cgmzTemp.calculateDNSTotalFrames() / $cgmzTemp.getDNSFramesPerDay());
$cgmz._addedDNSFrames += $gameVariables.value(variableId);
const newDay = Math.floor($cgmzTemp.calculateDNSTotalFrames() / $cgmzTemp.getDNSFramesPerDay());
if(newDay !== oldDay && newDay - oldDay > 0) {
for(let i = 0; i < newDay - oldDay; i++) {
$cgmz.increaseDNSDay();
}
}
Hi, this plugin only allows you to add commands to the main menu. I can't really tell what your pictures are showing because they are so heavily cropped, but some of them don't look like the main menu to me? Are you using another plugin to modify the main menu already? If so, that plugin would probably include options to change window size or position. However, if not I do have [CGMZ] Menu Customizer which allows you to edit the main menu windows: https://casper-gaming.itch.io/cgmz-menu-customizer















































































































































































































































