Project1

标题: 隐藏血条、蓝条等信息? [打印本页]

作者: y203834698    时间: 2022-7-18 23:18
标题: 隐藏血条、蓝条等信息?

如何隐藏掉血条、蓝条、等级等信息呀?纯解密剧情向游戏 没有战斗

作者: xiamumomo    时间: 2022-7-18 23:18
打开工程文件js rpg_Windows  用记事本或者DW都可以  ctrl+F搜索
JAVASCRIPT 代码复制
  1. Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
  2.     var lineHeight = this.lineHeight();
  3.     var x2 = x + 180;
  4.     var width2 = Math.min(200, width - 180 - this.textPadding());
  5.     this.drawActorName(actor, x, y);
  6.     this.drawActorLevel(actor, x, y + lineHeight * 1);
  7.     this.drawActorIcons(actor, x, y + lineHeight * 2);
  8.     this.drawActorClass(actor, x2, y);
  9.     this.drawActorHp(actor, x2, y + lineHeight * 1, width2);
  10.     this.drawActorMp(actor, x2, y + lineHeight * 2, width2);
  11. };

将下面的
    this.drawActorHp(actor, x2, y + lineHeight * 1, width2);
    this.drawActorMp(actor, x2, y + lineHeight * 2, width2);
这两句删掉 这个是菜单界面的
作者: y203834698    时间: 2022-7-19 08:19
本帖最后由 y203834698 于 2022-7-19 08:26 编辑
xiamumomo 发表于 2022-7-18 23:18
打开工程文件js rpg_Windows  用记事本或者DW都可以  ctrl+F搜索
Window_Base.prototype.drawActorSimpleSt ...


真的隐藏掉了 万分感谢!





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1