江湖梦网游戏服务平台

 找回密码
 免费注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 2416|回复: 1

[搬运汉化] 给职业限制等级

[复制链接]

449

帖子

41

精华

25

贡献

江湖英豪

检察者

Rank: 5Rank: 5Rank: 5

积分
7217
发表于 2018-11-14 01:42 | 显示全部楼层 |阅读模式

马上注册,享用更多精彩。

您需要 登录 才可以下载或查看,没有帐号?免费注册

x
  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. //=====================================================================================================================
复制代码


QQ群:135474765游戏群 [img]http://img2.17getfun.com/FhlesUf3VWxvhVFuc0qdBwYuanyt?imageMogr2/auto-orient/thumbnail/1080x%3E/format/jpg/

19

帖子

0

精华

0

贡献

新手上路

Rank: 1

积分
36
发表于 2019-8-30 10:47 | 显示全部楼层
66666666666
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

QQ|手机版|Archiver|小黑屋|江湖梦网 ( 粤ICP备18126133号-1 )

GMT+8, 2024-4-24 09:48 , Processed in 0.246564 second(s), 25 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表