设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1554|回复: 2
打印 上一主题 下一主题

[有事请教] 隐藏血条、蓝条等信息?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
131
在线时间
14 小时
注册时间
2022-7-18
帖子
9
跳转到指定楼层
1
发表于 2022-7-18 23:18:13 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
1星屑

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

最佳答案

查看完整内容

打开工程文件js rpg_Windows 用记事本或者DW都可以 ctrl+F搜索 Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) { var lineHeight = this.lineHeight(); var x2 = x + 180; var width2 = Math.min(200, width - 180 - this.textPadding()); this.drawActorName(actor, x, y); this.drawActorLevel(actor, x, y + lineHeight * 1); this.drawActorIcons(actor, x, y + line ...

Lv4.逐梦者

梦石
0
星屑
9314
在线时间
1840 小时
注册时间
2020-1-2
帖子
1082
2
发表于 2022-7-18 23:18:14 | 只看该作者
打开工程文件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);
这两句删掉 这个是菜单界面的

评分

参与人数 1+1 收起 理由
alexncf125 + 1 塞糖

查看全部评分

B站没人气的夏目漠漠,直播间:5378938实用插件教程点击红字传送
回复

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
131
在线时间
14 小时
注册时间
2022-7-18
帖子
9
3
 楼主| 发表于 2022-7-19 08:19:51 | 只看该作者
本帖最后由 y203834698 于 2022-7-19 08:26 编辑
xiamumomo 发表于 2022-7-18 23:18
打开工程文件js rpg_Windows  用记事本或者DW都可以  ctrl+F搜索
Window_Base.prototype.drawActorSimpleSt ...


真的隐藏掉了 万分感谢!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-5-12 09:05

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表