| 赞 | 1  | 
 
| VIP | 0 | 
 
| 好人卡 | 0 | 
 
| 积分 | 4 | 
 
| 经验 | 0 | 
 
| 最后登录 | 2024-7-15 | 
 
| 在线时间 | 18 小时 | 
 
 
 
 
 
Lv2.观梦者 
	- 梦石
 - 0 
 
        - 星屑
 - 393 
 
        - 在线时间
 - 18 小时
 
        - 注册时间
 - 2013-12-6
 
        - 帖子
 - 13
 
 
 
 | 
	
如果只是想在状态栏里不显示出来,可以编辑js文件夹的rpg_windows.js文件,找到下面这部分,注释掉相应的部分就行了 
Window_Status.prototype.drawBasicInfo = function(x, y) { 
    var lineHeight = this.lineHeight(); 
    this.drawActorLevel(this._actor, x, y + lineHeight * 0);    //等级 
    this.drawActorIcons(this._actor, x, y + lineHeight * 1);      //脸图 
    //this.drawActorHp(this._actor, x, y + lineHeight * 2);      //HP 
    //this.drawActorMp(this._actor, x, y + lineHeight * 3);      //Mp 
}; |   
 
 
 
 |