赞 | 674 |
VIP | 62 |
好人卡 | 144 |
积分 | 336 |
经验 | 110435 |
最后登录 | 2024-11-1 |
在线时间 | 5108 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 33608
- 在线时间
- 5108 小时
- 注册时间
- 2012-11-19
- 帖子
- 4878
|
我这儿只有一个更改最大等级的。
- //=====================================================================================================================
- ;(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]);
- };
- }());
- //=====================================================================================================================
复制代码
改最大等级的插件命令是: ChangeMaxLevel 角色ID 最大等级
未使用这个插件改过最大等级的角色,默认为数据库的最大等级。
如果最大等级改得比当前等级小不会自动降级,
还有,未测试 |
|