Project1

标题: MV的更改角色最大等级事件脚本是?已解决。 [打印本页]

作者: 天浩    时间: 2018-11-11 17:33
标题: MV的更改角色最大等级事件脚本是?已解决。
本帖最后由 天浩 于 2018-11-12 11:19 编辑

MV的更改角色最大等级事件脚本是?
比如将1号角色的最大等级设置为10?

好了,自己解决了。

JAVASCRIPT 代码复制
  1. //事件脚本:$gameSystem.changeMaxLevel(1, 10)  1号角色最大等级变为10
  2. //=====================================================================================================================
  3. ;(function(){
  4. Game_System.prototype.maxLevelData = function() {
  5.     return this._maxLevelData || [];
  6. };
  7. Game_System.prototype.maxLevel = function(actorId) {
  8.     return this.maxLevelData()[actorId];
  9. };
  10. Game_System.prototype.changeMaxLevel = function(actorId, max) {
  11.     if (!actorId || !max) return;
  12.     this._maxLevelData = this._maxLevelData || [];
  13.     this._maxLevelData[actorId] = max.clamp(1, max);
  14. };
  15. //=====================================================================================================================
  16. Game_Actor.prototype.maxLevel = function() {
  17.     return $gameSystem.maxLevel(this._actorId) || this.actor().maxLevel;
  18. };
  19. //=====================================================================================================================
  20. var XdRsData_MaxLv_Game_InterpreterPluginCommand = Game_Interpreter.prototype.pluginCommand;
  21. Game_Interpreter.prototype.pluginCommand = function(command, args) {
  22.     XdRsData_MaxLv_Game_InterpreterPluginCommand.call(this, command, args);
  23.     command === 'ChangeMaxLevel' && $gameSystem.changeMaxLevel(+args[0], +args[1]);
  24. };
  25. }());
  26. //=====================================================================================================================

作者: 寂静的夜里    时间: 2018-11-11 18:45
数据库角色里面就有最高等级的设定。
如果想要突破99,则需要使用YEP_CoreEngine之类的插件
作者: 坑爹乖乖    时间: 2018-11-12 05:38
寂静的夜里 发表于 2018-11-11 18:45
数据库角色里面就有最高等级的设定。
如果想要突破99,则需要使用YEP_CoreEngine之类的插件 ...

那个什么是YEP_CoreEngine,我是萌新,不懂,我现在在求助,如何限制职业等级角色等级,一定要去转职才能再次升级,要转职3次才可以到满级这样
作者: doomto    时间: 2018-11-12 09:14
萌新先学学插件吧,要不然很难做出你想要的效果
作者: 寂静的夜里    时间: 2018-11-12 11:21
哦,能自己解决就行。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1