赞 | 44 |
VIP | 0 |
好人卡 | 0 |
积分 | 62 |
经验 | 240 |
最后登录 | 2024-11-8 |
在线时间 | 604 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 6211
- 在线时间
- 604 小时
- 注册时间
- 2017-9-27
- 帖子
- 251
|
- //事件脚本:$gameSystem.changeMaxLevel(1, 10) 1号角色最大等级变为10
- //=====================================================================================================================
- ;(function(){
- Game_System.prototype.maxLevelData = function() {
- return this._maxLevelData || [];
- };
- Game_System.prototype.maxLevel = function(actorId) {
- return this.maxLevelData()[actorId];
- };
- Game_System.prototype.changeMaxLevel = function(actorId, max) {
- if (!actorId || !max) return;
- this._maxLevelData = this._maxLevelData || [];
- this._maxLevelData[actorId] = max.clamp(1, max);
- };
- //=====================================================================================================================
- Game_Actor.prototype.maxLevel = function() {
- return $gameSystem.maxLevel(this._actorId) || this.actor().maxLevel;
- };
- //=====================================================================================================================
- var XdRsData_MaxLv_Game_InterpreterPluginCommand = Game_Interpreter.prototype.pluginCommand;
- Game_Interpreter.prototype.pluginCommand = function(command, args) {
- XdRsData_MaxLv_Game_InterpreterPluginCommand.call(this, command, args);
- command === 'ChangeMaxLevel' && $gameSystem.changeMaxLevel(+args[0], +args[1]);
- };
- }());
- //=====================================================================================================================
复制代码
这个我也找了半天。总算找到了。使用方法我给你备注了。
这个是更改角色最大等级。你可以在转职后,将这个角色的最大等级更改。 |
|