My Discord is visible on my blog
(Not yet on mobile, use desktop version when visiting this link)
Yeah, this is actually an impression that I receive a lot!
It takes some time to learn, but at some point, it clicks to the devs and then they are super happy with all the options they have!
By the way, to finally reduce this coonfusion, I'm looking for alternative terms for this "layout settings"; I'm thinking about terms like
Without too much thinking, what would be a term where you think that sounds intuitive?
I just uploaded a new version 1.0.2 (I was working on that anyway).
With this update, please follow this procedure:
This Common Event is now run each time you capture an enemy. The Variable holds their ID. So, inside this Common Event, you can do anything you need, e.g. flipping a Switch "Werewolf captured" to ON.
This sounds like some slight missunderstanding about how Random Maps understands "layouts" and "exits".
Layouts manage how all the maps are connected to each other, see: https://aerosys.blog/room-layouts It does not affect how the small "rooms" on one generated map look like. Instead, 5x5 means that Random Maps will pre-generate 25 maps in total that are connected in a 5x5 grid. Meaning, that there ARE horizontal exits in each map.
To only enable vertical exits, the simplest way is to use a "tower" room layout.
Well, usually I would have asked you to ask the Rosedale dev for support, since I don't own this plugin. Unfortunately, he passed away while ago.
I quickly made this fix: https://downloads.aerosys.blog/plugins/MK_BackgroundSpriteFiltersFix.js (right-click, save as...)
Please tell me whether it's working for you, then I can integrate it to plugin for everyone.
The changelog is now available :)
https://aerosys.itch.io/custom-ui/devlog/1523126/version-200
Don't worry asking questions, I really appreciate them! They tell me that you guys like my stuff :)
My plugin does not add a "new" layer, that would be too complicated. Instead, I designed it to follow RPG Maker's 6 layers world (i.e. A lower, A upper, B lower, B upper, shadows, region tiles).
I briefly tested this pattern, and it worked for me. I was able to first build the window (line 6), and then the flowers (line 7) on top.

Tell me whether this fits your needs!
Hello itch.io team,
I'm playing around with my profile page (https://aerosys.itch.io/), and I think it looks cleaner when I hide all of my products and instead group them by collections.
However, all the price tags are now gone. I think they still should be visible. Otherwise, grouping by collections doesn't really make sense to me.
Best regards
Aero
There are numerous ways to handle it, I kept it open by design to keep it more flexible to the game dev's preferences.
Here are 2 best practices:
Method 1 (requires the hotbar plugin that comes with the sandbox bundle):
Method 2:
Variable OP: current Map
If Variable current Map == 1
MK.Sandbox.openMenu('houses')
If Variable current Map == 2
MK.Sandbox.openMenu('furniture')At some point in your game (usually inside a Common Event), you open the build menu with a plugin command (MZ) or a script call (MV) like this:
MK.Sandbox.openBuildMenu('houses')Now, only blueprints with the category "houses" are shown.
For the other question: Unfortunately, the source map must have the same tileset as the current map. RPG Maker doesn't support mixing tilesets well.
Okay, so the first thing that you can try is to disable all other plugins and try it again.
Second, press F12 while testplaying to open the debug console, and (super important) navigate to "Console". Sometimes, you find useful information here.
Third, check your game directory. My plugin always creates a new folder "uicustom" with some HTML and JS files. The lack of this directory and the files can indicate that my plugin didn't even start with the game.
Finally, I've heard of people where the F9 key simply didn't work. You can test it by pressing F9 while being on the map, and check whether the debug menu (where you can inspect Switches and Variables) opens up or not. If not, you can tell my plugin to use another hotkey by following this procedure:
The next update will include an option to manually set the hotkey, so you no longer have to do it manually.
Hope this helps!
EDIT:
Sorry I forgot that you already tried disabling other plugins in your first post
I can add an option to make captured creatures instantly join your party, then you can combine it with my pet summon system.
Game mechanics that contain something with "limits" or "counters", however, are more difficult to implement. Not necessarily the programming part, but to bring it into a handy shape that does not overload or pollute the core plugin.
Please remove and re-add the plugin to ensure the default plugin parameters are used.
When the game displays a 100% success rate but capturing still doesn't work, then you already did everything just right, and my plugin was probably blocked by another plugin. When the "capture status HUD" is not even shown at all, then the plugin didn't start successfully at game launch.
In both cases, disable all other plugins and try again.

A demo is not planned right now. A demo is great for larger plugins, but IMO it's a bit overrated for smaller plugins where a demo doesn't provide any additional information. It is also additional work for me that, when you want to make it right, goes beyond simply uploading MV&MZ zip files.
The "How to" section already demonstrates everything you need to know to use my plugin: https://aerosys.blog/capture
Are you calling common events? Given that the hamburger flickers also makes me think that you run a short common event which, by default, blocks the player from going into the pause menu, even when it's for less than a second. The hotbar simply replicates it, as you should not be able to call hotbar actions during cutscenes.
I think, usually each hotbar slot should have its unique common event (whether it's called directly or via item/skill doesn't matter here), so I don't see the benefit yet.
However, I quickly made a plugin that puts the value of item/skill/equip/common event of the latest hotbar interaction into a Variable. Hope this helps!
Change the Variable ID at the top to your needs, and then save it as a plugin with any name.
/*:
* @target MZ
*/
(function() {
const variableId = 1; // <--
const _GameParty_onHotbarItemEquipWeapon = Game_Party.prototype.onHotbarItemEquipWeapon;
Game_Party.prototype.onHotbarItemEquipWeapon = function(weaponId) {
$gameVariables.setValue(variableId, weaponId);
_GameParty_onHotbarItemEquipWeapon.call(this, weaponId);
}
const _GameParty_onHotbarItemEquipArmor = Game_Party.prototype.onHotbarItemEquipArmor;
Game_Party.prototype.onHotbarItemEquipArmor = function(armorId) {
$gameVariables.setValue(variableId, armorId);
_GameParty_onHotbarItemEquipArmor.call(this, armorId);
}
const _GameParty_onHotbarItemRegularItem = Game_Party.prototype.onHotbarItemRegularItem;
Game_Party.prototype.onHotbarItemRegularItem = function(itemId) {
$gameVariables.setValue(variableId, itemId);
_GameParty_onHotbarItemRegularItem.call(this, itemId);
}
const _GameParty_onHotbarItemCastSkill = Game_Party.prototype.onHotbarItemCastSkill;
Game_Party.prototype.onHotbarItemCastSkill = function(skillId) {
$gameVariables.setValue(variableId, skillId);
_GameParty_onHotbarItemCastSkill.call(this, skillId);
}
const _GameParty_onHotbarItemCommonEvent = Game_Party.prototype.onHotbarItemCommonEvent;
Game_Party.prototype.onHotbarItemCommonEvent = function(commonEventId) {
$gameVariables.setValue(variableId, commonEventId);
_GameParty_onHotbarItemCommonEvent.call(this, commonEventId);
}
})()