赞 | 8 |
VIP | 0 |
好人卡 | 3 |
积分 | 6 |
经验 | 8536 |
最后登录 | 2024-11-7 |
在线时间 | 165 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 642
- 在线时间
- 165 小时
- 注册时间
- 2012-4-18
- 帖子
- 264
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
如题,屏蔽战斗日志,本来因为自己要用所以就小搜了一下,发现好像之后VA屏蔽战斗日志的帖子,而且好像会报错的样子,所以就自己翻了翻代码,方法比较粗糙,但是很实用。首先找到windows.js,用代码编辑软件打开它,找到这个位置:- Window_BattleLog.prototype.windowWidth = function() {
- return Graphics.boxWidth;
- };
- Window_BattleLog.prototype.windowHeight = function() {
- return this.fittingHeight(this.maxLines());
- };
复制代码 在代码中两个return后面填上0,其余的部分注释掉。变成:- Window_BattleLog.prototype.windowWidth = function() {
- return 0 //Graphics.boxWidth;
- };
- Window_BattleLog.prototype.windowHeight = function() {
- return 0 //this.fittingHeight(this.maxLines());
- };
复制代码 好啦,这下可以安全的屏蔽掉战斗日志啦。 |
评分
-
查看全部评分
|