From d9ae7a0a0915dea2a147a560880c809a1a39e200 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Mon, 19 Jan 2026 12:20:55 -0600 Subject: [PATCH] Adjusting font for sex --- www/js/plugins/JsScript33Set.js | 6 +++--- www/js/plugins/JsScript79Set.js | 9 +++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/www/js/plugins/JsScript33Set.js b/www/js/plugins/JsScript33Set.js index 888a50b..6676b8d 100644 --- a/www/js/plugins/JsScript33Set.js +++ b/www/js/plugins/JsScript33Set.js @@ -1449,9 +1449,9 @@ Game_Interpreter.prototype.Menu_L1Sex_OpnView2 = function () { this.SpriteStrR(PN_mSxSumTxt + 0, $gameVariables.value(VN_経験人数) + "人", 30, 381, 231 + (58 * 0), 0); this.SpriteStrR(PN_mSxSumTxt + 1, $gameVariables.value(VN_絶頂人数) + "人", 30, 381, 231 + (58 * 1), 0); this.SpriteStrR(PN_mSxSumTxt + 2, $gameVariables.value(VN_射精人数) + "人", 30, 381, 231 + (58 * 2), 0); - this.SpriteStr(PN_mSxIrnTxt + 1, $gameSystem.SexTxt[0], 25, 93, 584 + (32 * 0), 0); - this.SpriteStr(PN_mSxIrnTxt + 2, $gameSystem.SexTxt[1], 25, 93, 584 + (32 * 1), 0); - this.SpriteStr(PN_mSxIrnTxt + 3, $gameSystem.SexTxt[2], 25, 93, 584 + (32 * 2), 0); + this.SpriteStr(PN_mSxIrnTxt + 1, $gameSystem.SexTxt[0], 17, 93, 584 + (32 * 0), 0); + this.SpriteStr(PN_mSxIrnTxt + 2, $gameSystem.SexTxt[1], 17, 93, 584 + (32 * 1), 0); + this.SpriteStr(PN_mSxIrnTxt + 3, $gameSystem.SexTxt[2], 17, 93, 584 + (32 * 2), 0); let _OCStr = "\\oc[rgba(255,255,255,1)]"; let _KaisuSize = 28; let _KaisuYZure = -8; diff --git a/www/js/plugins/JsScript79Set.js b/www/js/plugins/JsScript79Set.js index d11bfbb..1f65b18 100644 --- a/www/js/plugins/JsScript79Set.js +++ b/www/js/plugins/JsScript79Set.js @@ -371,11 +371,12 @@ Game_Interpreter.prototype.command101 = function() { return false; }; Game_Interpreter.prototype.isContinueMessageString = function() { - if (this.nextEventCode() === 101 && $gameSystem.messageRows() > 4) { - return true; - } else { + // Disabled auto-merge of consecutive messages when rows > 4 + // if (this.nextEventCode() === 101 && $gameSystem.messageRows() > 4) { + // return true; + // } else { return this.nextEventCode() === 401; - } + // } }; Yanfly.Message.Window_Base_resetFontSettings = Window_Base.prototype.resetFontSettings;