| 
本帖最后由 龙和许也 于 2017-5-30 00:37 编辑
x
加入我们,或者,欢迎回来。您需要 登录 才可以下载或查看,没有帐号?注册会员  
 看了T触的脚本存放处发现了移除等级以及相关经验成长的功能脚本,想说有没有类似的插件在MV上,
 结果找了老半天是没有MV的,请问有没有人知道功能和上面一样的插件?
 
 
 
 
 三个小时了,依旧没有什么人回复呢,但我还是找到了相关可用的,再瞎凑的...
 
 
 
 /*: * @plugindesc 把一些原始模板存在的展示数据给隐藏了 * @author RPG MAKER Form * * @help 没有任何资料在这里 */ //====================//把菜单相关等级的资讯隐藏起来//==================== Window_Base.prototype.drawActorLevel = function(actor, x, y) {    this.changeTextColor(this.systemColor());     this.resetTextColor(); }; //======================//把“状态”里的相关等级资讯隐藏起来//====================== Window_Status.prototype.drawExpInfo = function(x, y)  {    this.changeTextColor(this.systemColor());     this.resetTextColor(); };
/*: 
 * @plugindesc 把一些原始模板存在的展示数据给隐藏了 
 * @author RPG MAKER Form 
 * 
 * @help 没有任何资料在这里 
 */ 
  
//==================== 
//把菜单相关等级的资讯隐藏起来 
//==================== 
  
Window_Base.prototype.drawActorLevel = function(actor, x, y) { 
    this.changeTextColor(this.systemColor()); 
  
    this.resetTextColor(); 
  
}; 
  
//====================== 
//把“状态”里的相关等级资讯隐藏起来 
//====================== 
  
Window_Status.prototype.drawExpInfo = function(x, y)  { 
    this.changeTextColor(this.systemColor()); 
  
    this.resetTextColor(); 
  
}; 
 效果:
 
 
   
 
   
 |