| 本帖最后由 天一教主 于 2023-2-6 22:48 编辑 
 
 Window_Help.prototype.setText = function(text) {    text = text.replace(/<(?:skill_id):[ ]*((?:\d*))>/i, "");    if (this._text !== text) {        this._text = text;        this.refresh();    }};
Window_Help.prototype.setText = function(text) { 
    text = text.replace(/<(?:skill_id):[ ]*((?:\d*))>/i, ""); 
    if (this._text !== text) { 
        this._text = text; 
        this.refresh(); 
    } 
}; 
让那个窗口Window_Help 屏蔽掉就行了
 |