赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 1 |
经验 | 8526 |
最后登录 | 2017-4-28 |
在线时间 | 81 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 81 小时
- 注册时间
- 2016-1-6
- 帖子
- 150
|
我写了段脚本,你可以试试,保存成js,放在工程指定目录下。- /*:
- * @plugindesc High Level gain 0 exp.
- * @version 1.0
- */
- (function() {
- Game_Actor.prototype.gainExp = function(exp) {
- var newExp = this.currentExp() + Math.round(exp * this.finalExpRate());
- if (this._level>=3){//改成你希望无法获得经验的等级
- newExp=this.currentExp();
- //$gameMessage.newPage();
- $gameMessage.add(this._name + "因为等级过高,无法获得经验!");
- };
- this.changeExp(newExp, this.shouldDisplayLevelUp());
- };
- })();
复制代码 |
|