Hi! I tried the plugin, however it gives me an Error message.
"Uncaught Type Error: Cannot read property 'replace' of undefined"
Thank you in advance.
Viewing post in [CGMZ] Save File for RPG Maker MZ comments
It is drawing the actor name on their face image, but the actor's name is undefined so when it goes to call string functions on the actor name it crashes because undefined is not a string. You can try copying the below JS into the bottom of the plugin file and it should start working:
CGMZ_Window_SaveFileDisplay.prototype.onFaceLoaded = function(args) { this.drawFace(args.name, args.index, args.x, args.y, args.width); const y = args.y + ImageManager.faceHeight - this.lineHeight(); this.contents.fontBold = true; this.contents.outlineWidth = 6; if(args.actorName) { this.CGMZ_drawTextLine(args.actorName, args.x, args.y, args.width, "center"); this.CGMZ_drawTextLine(CGMZ.SaveFile.LevelText + args.actorLevel, args.x, y, args.width, "right"); } this.contents.fontBold = false; this.contents.outlineWidth = 3; };
Hi, for removing the name and level, you can just comment out the lines in the function I gave you above that draw them.
For drawing more than 4 party members, it's a bit tough because the plugin is not set up for that, I think it would need an update unless you are comfortable writing your own JS, in which case you could modify the rect it is drawing the faces in.