本帖最后由 梦想家大魔王 于 2019-3-11 19:55 编辑
代码很简答,存成js文件后放进js\plugins目录,在插件管理器最下方激活它就可以。
var Imported = Imported || {}; Imported.LevelUp_Recovery = true; var SuTao = SuTao || {}; SuTao.LevelUp_Recovery = SuTao.LevelUp_Recovery || {}; SuTao.LevelUp_Recovery.version = 1.0; (function ($) { $.___Game_Actor_levelUp___ = Game_Actor.prototype.levelUp; Game_Actor.prototype.levelUp = function () { $.___Game_Actor_levelUp___.call(this); this._hp = this.mhp; this._mp = this.mmp; this.refresh(); }; })(SuTao.LevelUp_Recovery);
var Imported = Imported || {};
Imported.LevelUp_Recovery = true;
var SuTao = SuTao || {};
SuTao.LevelUp_Recovery = SuTao.LevelUp_Recovery || {};
SuTao.LevelUp_Recovery.version = 1.0;
(function ($) {
$.___Game_Actor_levelUp___ = Game_Actor.prototype.levelUp;
Game_Actor.prototype.levelUp = function () {
$.___Game_Actor_levelUp___.call(this);
this._hp = this.mhp;
this._mp = this.mmp;
this.refresh();
};
})(SuTao.LevelUp_Recovery);
|