Project1
标题:
屏蔽战斗日志小技巧~~~安全不报错
[打印本页]
作者:
salvareless
时间:
2016-1-15 15:10
标题:
屏蔽战斗日志小技巧~~~安全不报错
如题,屏蔽战斗日志,本来因为自己要用所以就小搜了一下,发现好像之后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());
};
复制代码
好啦,这下可以安全的屏蔽掉战斗日志啦。
作者:
夏末渐离
时间:
2016-1-15 18:21
建议,请像这样用插件重定义方法。
(function()
{
Window_BattleLog.prototype.windowWidth = function()
{
return 0 //Graphics.boxWidth;
};
Window_BattleLog.prototype.windowHeight = function()
{
return 0 //this.fittingHeight(this.maxLines());
};
})();
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1