Project1

标题: 屏蔽战斗日志小技巧~~~安全不报错 [打印本页]

作者: salvareless    时间: 2016-1-15 15:10
标题: 屏蔽战斗日志小技巧~~~安全不报错
如题,屏蔽战斗日志,本来因为自己要用所以就小搜了一下,发现好像之后VA屏蔽战斗日志的帖子,而且好像会报错的样子,所以就自己翻了翻代码,方法比较粗糙,但是很实用。首先找到windows.js,用代码编辑软件打开它,找到这个位置:
  1. Window_BattleLog.prototype.windowWidth = function() {
  2.     return Graphics.boxWidth;
  3. };

  4. Window_BattleLog.prototype.windowHeight = function() {
  5.     return this.fittingHeight(this.maxLines());
  6. };
复制代码
在代码中两个return后面填上0,其余的部分注释掉。变成:
  1. Window_BattleLog.prototype.windowWidth = function() {
  2.     return 0 //Graphics.boxWidth;
  3. };

  4. Window_BattleLog.prototype.windowHeight = function() {
  5.     return 0 //this.fittingHeight(this.maxLines());
  6. };
复制代码
好啦,这下可以安全的屏蔽掉战斗日志啦。
作者: 夏末渐离    时间: 2016-1-15 18:21
建议,请像这样用插件重定义方法。
  1. (function()
  2. {
  3.     Window_BattleLog.prototype.windowWidth = function()
  4.   {
  5.     return 0 //Graphics.boxWidth;
  6.   };

  7. Window_BattleLog.prototype.windowHeight = function()
  8.   {
  9.     return 0 //this.fittingHeight(this.maxLines());
  10.   };
  11. })();
复制代码





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