We would at least need enough to replicate your issue. Usually zipping the project and sending it is the best way to preserve your environment. If you feel we can replicate the issue with just your Custom Menu plugin itself, you can send that instead. Whoever tackles your support ticket will follow up with you on the email chain.
MythAtelier
Creator of
Recent community posts
Well, without access to your custom menu plugin, it might be a little bit hard for us to make a compatibility patch for it to allow for the behavior you are requesting. Please send a copy of your RM project to our support email (support@myth-atelier.com) so that we can see what the issue is and respond with the necessary fixes.
Thanks,
MythAtelier Team
CGC plugins are fully compatible with YEP so this is more likely a plugin ordering issue if anything. We have tested our plugins with YEP suite for years at this point so there shouldn't be any major issues with them. Once again, please send in your project to the support email (support@myth-atelier.com) so we can assist as it seems that due to some setup issues you are working in an environment that is creating more errors. We are not able to reproduce your errors on our end otherwise and it makes troubleshooting them more difficult.
You'll need to edit the Deck Editor plugin to skip the Category Types window for now. Let us know the exact behavior you are going for and we can provide a patch plugin for Deck Editor that allows that behavior. Once we have confirmed it works for you, we can roll it out for general use in the next update.
Hey SGHarlekin,
Sorry to hear you are running into so much trouble. We tried to respond to your previous thread as there were syntax errors in the Notetags you posted, however, the thread was removed before we had a chance to respond. Please send a copy of your RM project over to our support email (support@myth-atelier.com). We can follow up with you once we have a chance to look under the hood and figure out what's going on.
Thanks,
MythAtelier Team
Hello nonbiri,
If you are running into overlap issues, you'll want to increase the distance between the Cards in the Hand. This can be done by increasing the Min Spacing Width parameter in the Hand Zone parameter in Core Engine. If that is still not enough, then also consider increasing the Max Hand Width to give the entire Card Hand enough room for the overlap to not occur.
Note: Clicking on the Highlight overlayed on top of a Card is clicking past the collision box of the Card as it is larger than the size of the Card Base. You can change the dimensions of the Highlight sprite to hug a little closer to the Card to prevent this issue from happening.
Hope that helps,
MythAtelier Team
If you updated to v1.0.5 from v1.0.4, make sure to check if the Stats to Display parameter has been properly populated. Because we have to add/change some of the variables in that struct, it may set a few of those to undefined when you update so you'll need to go in and refresh those to make sure they have the right value.

If after refreshing the values and running the game the stats do not appear, go ahead and post some screencaps of your Stats to Display parameters in this thread so we can try to replicate the issue. Or you can send a copy of your project to support@myth-atelier.com and we can follow up from there.
Hello DeeJay,
Yeah, that should be possible. Here's how you might approach it with our system:
1) Create a Skill with the User as a target and Card Action Notetags that enable the redraw capability. Something like:
<Card Actions> Select 1 from Hand Move Selected to Deck Shuffle Deck Draw 1 Clear Selection </Card Actions>
2) Create an Extra Button in the Core Engine parameters and assign the Skill from Step 1. And that Extra Button to the UI Order parameter list so that it appears in the Battle UI.
3) In Battles, players can select this new Button and pick cards in their Hand that you would like to redraw. You can determine using the Button parameters the availability of this feature (such as making it available only once per turn or only when the Actor is under a State etc.).
If you wanted to do something a bit more visceral/better gamefeel like the player simply dragging the card to the deck to get a reshuffle, that would need to be achieved with an extension plugin but it is definitely in scope to achieve.
Hope that helps,
MythAtelier Team
Yes, what you purchased was the Core Plugin Suite which consists of all of those plugins. Each of the plugins has a set of features that can be modularly added to Core Engine based on the needs of your game. The Core Plugin Suite is expanded every time we make a major update so you can get access to new features.
If you have purchased CGC on any of our platforms (Itch.io, Patreon, Steam), you have the license to use all of those plugins for both non-commercial and commercial projects. You may even modify the plugins to best suit your needs and create plugins extending their functionality.
Party UI Type B and Type C are at the proposal stage and have not yet been developed. Party UI Type C will most likely be added to the Core Plugin Suite around the time of CGC v1.8.0 when the Enemy Cards & Decks feature will be implemented.
Let us know if you have any further questions.
Are you trying to play those two opposing cards simultaneously? If so, no that is not currently supported by the plugin. You can theoretically have the player play their card and then show the enemy's card without playing it using the Show Card plugin command and then resolve them manually through Eval Card Actions.
So, most of these would be the properties for Game_Actors. You can view them via the Console or by reviewing the code in rpg_objects.js. We think this resource might be useful as it documents those fairly well: https://docs.google.com/spreadsheets/d/1-Oa0cRGpjC8L5JO8vdMwOaYMKO75dtfKDOetnvh7...
Could you explain what would the reapplication behavior entail exactly? Currently once the buildup is complete, you have the State until it elapses or is removed and then you can try to apply it again. Would you like buildup to continue past the fill point even while you have the State applied to a target? Or some other kind of behavior?
Hey hungrykitten,
Looks like there is a copy error in your plugins which is preventing them from running your game (Unexpected token u in JSON). This usually happens if there is an additional token or character in the plugin itself that disrupts the execution of the code. As one of these errors is with Core Engine and all other plugins in the suite are dependent on it, the entire thing is not compiling and spitting out these errors. We recommend sending a copy of your RPG Maker project to our email (myth.atelier@gmail.com) and we can sort it out for you as this type of error is a little annoying to troubleshoot over forum posts. For the subject line of the email, just mention that it is you (hungrykitten) and we can follow up with you there.
Thanks,
MythAtelier Team
Hey shoppingcartforb,
You can achieve this using the Action Pack 2 plugin (currently available via our Patreon) which lets you include the Random modifier to Card Actions.
To make "Discard a random card from you hand, draw 1 card" with Action Pack 2, you might do something like this:
<Card Actions> Discard Random 1 Draw 1 </Card Actions>
If you don't wish to use Action Pack 2, then something like this would work as well:
<Card Actions> Eval var skWin = SceneManager._scene._skillWindow; skWin.discardCard(Math.floor(Math.random() * (BattleManager.actor().handSize) + skWin._itemsBeforeCards)) Draw 1 </Card Actions>
Hope that helps. Let us know if you need assistance with anything else.
Thanks,
MythAtelier Team
Hey swoon spoon,
This doesn't seem to match the current behavior of the CGC plugins even if you set the Party and Actor Command parameter skips to false. Are you using any other plugins that may be altering how turns are taken? If so, could you share a screenshot of your Plugin Manager list so we can replicate your setup and see if we can find out what's causing this behavior.
Thanks,
MythAtelier Team
As stated earlier, Party UI Type C will be released alongside the CGC update that includes the Enemy Cards and Zones features. There are still two major version updates that need to happen to CGC before that particular update can be made. We can update this thread once we have a better idea of when it will be released.
Hello Streletz, thanks for your questions. Here are some answers.
- Was the steam version updated?
It will be soon! We don't control the Steam page, that is handled by GGG who are the current RPG Maker license holders. Due to some additional requirements from their end and some scheduling issues, this process has taken a lot longer than expected. As many users have had confusion with versions on different platforms we will do simultaneous releases starting with v1.6.5 so everyone is on the same page.
- Are the plugins Card shop and Deck editor included into this one? Or do i have to buy the separatly? Are they disponible on steam?
On itch, we have the CGC expansions on separate Store Pages so that users can pick and choose what modules they think they need for their project. The Steam version by contrast packages all the expansions together because you can't do DLC of DLC on that platform. This bundle is the equivalent of the product on Steam: https://itch.io/s/155264/card-game-combat-plugin-bundle. Both versions receive free updates with bug fixes and new content whenever we put a major or minor version out. If you have purchased CGC products on Steam, we can provide the equivalent itch keys for it so you don't have to buy it again for a new platform.
Let us know if you have any further questions. We would be happy to answer them :)
Interesting. Not familiar with this error. Couple follow up questions:
- Is this error occurring when you run the Souls Status Bars MZ Demo Project or when you place the plugin into a blank MZ project?
-What are the Plugin Parameters you have set up before running the project? (please share a screenshot if able).
- What version of RPG Maker MZ are you running? Is it a standalone install of the program or one linked to Steam?
Any and all information you can provide will help. Once we are able to replicate the issue we can provide steps for how to fix it.
Apologies for the delay, we were hoping to roll out this bug fix along with the next wave of features for the Version 1.1.0 of this plugin but that's taking a longer than expected given our current resources. If you need us to expedite the patch for this specific issue, we can make it available to you by this coming weekend as a minor update.









































