赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 12 |
经验 | 0 |
最后登录 | 2025-10-16 |
在线时间 | 121 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1169
- 在线时间
- 121 小时
- 注册时间
- 2023-7-23
- 帖子
- 5
|
本帖最后由 蜀道山 于 2025-10-13 22:18 编辑
//=============================================================================
// CMZPX_ZHWT.js
//=============================================================================
/*:
@plugindesc 综合问题
@author 沉默在咆哮
@target MV
@help
*/
((CMZPX_ZHWT) => {
CMZPX_ZHWT.refresh = function () {
this.contents.clear();
if (this._actor) {
this.drawActorName(this._actor, this.textPadding(), 0);
const sz = [2, 3, 6];
for (var i = 0; i < sz.length; i++) {
this.drawItem(0, this.lineHeight() * (1 + i), sz);
}
}
};
})(Window_EquipStatus.prototype);
新建个js,名字随意,复制这段代码放进去,保存,插件管理器启动它。 |
|