赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 4 |
经验 | 0 |
最后登录 | 2024-1-17 |
在线时间 | 41 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 402
- 在线时间
- 41 小时
- 注册时间
- 2019-7-29
- 帖子
- 19
|
7楼
楼主 |
发表于 2019-8-17 17:08:23
|
只看该作者
- Game_Actor.prototype.classLevel = function(classId) {
- if (Yanfly.Param.CCCMaintainLv) return this.level;
- if (this._exp[classId] === undefined) this._exp[classId] = 0;
- var level = 1;
- for (;;) {
- if (level >= this.maxLevel()) break;
- if (this.expForLevel(level + 1) > this._exp[classId]) break;
- level++;
- }
- return level;
- };
复制代码
YEP-classchangecore 里这段代码是改转职后等级的吧?哪位大神能帮忙改一下?改成现有等级,而不是回到1级? |
|