设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1635|回复: 3
打印 上一主题 下一主题

[已经过期] 如何修改角色最大属性值?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
325
在线时间
3 小时
注册时间
2012-11-11
帖子
4
跳转到指定楼层
1
发表于 2015-3-8 19:13:51 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

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

x
问题同上,如何把攻击力防御力精神敏捷调大一点?默认最大值是999,我想调到99999
哪位大神能帮帮我,教教我改哪里?
还有物品系统默认最多是99个,我想调成9999个,这些都该调哪里呢?
我用事件处理战斗系统,但是角色最大属性值太低了才999。而且武器防具那些最大属性都很少都是500
这些都应该调哪里呢?

Lv4.逐梦者

【欧皇】

梦石
3
星屑
2066
在线时间
1004 小时
注册时间
2013-8-19
帖子
3486

开拓者

4
发表于 2015-3-9 16:33:53 | 只看该作者
  1. class Game_Party
  2. def gain_item(item, n, include_equip = false)
  3.     number = item_number(item)
  4.     case item
  5.     when RPG::Item
  6.       @items[item.id] = [[number + n, 0].max, 9999].min
  7.     when RPG::Weapon
  8.       @weapons[item.id] = [[number + n, 0].max, 9999].min
  9.     when RPG::Armor
  10.       @armors[item.id] = [[number + n, 0].max, 9999].min
  11.     end
  12.     n += number
  13.     if include_equip and n < 0
  14.       for actor in members
  15.         while n < 0 and actor.equips.include?(item)
  16.           actor.discard_equip(item)
  17.           n += 1
  18.         end
  19.       end
  20.     end
  21.   end
  22. end
复制代码
QQ:2223942063
Q群:365819625
贪吃方1.4
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
325
在线时间
3 小时
注册时间
2012-11-11
帖子
4
3
 楼主| 发表于 2015-3-9 09:42:58 | 只看该作者
欧买歌 发表于 2015-3-8 20:06

谢谢,我还想修改一下物品最大数量上限,把99个改成9999个,能帮我吗?
回复 支持 反对

使用道具 举报

Lv4.逐梦者

【欧皇】

梦石
3
星屑
2066
在线时间
1004 小时
注册时间
2013-8-19
帖子
3486

开拓者

2
发表于 2015-3-8 20:06:31 | 只看该作者
  1. class Game_Battler
  2. def maxhp_limit
  3. return 999999
  4. end
  5. def maxhp
  6. return [[base_maxhp + @maxhp_plus, 1].max, maxhp_limit].min
  7. end
  8. def maxmp
  9. return [[base_maxmp + @maxmp_plus, 0].max, 999999].min
  10. end
  11. def atk
  12. n = [[base_atk + @atk_plus, 1].max, 99999].min
  13. for state in states do n *= state.atk_rate / 100.0 end
  14. n = [[Integer(n), 1].max, 99999].min
  15. return n
  16. end
  17. def def
  18. n = [[base_def + @def_plus, 1].max, 99999].min
  19. for state in states do n *= state.def_rate / 100.0 end
  20. n = [[Integer(n), 1].max, 99999].min
  21. return n
  22. end
  23. def spi
  24. n = [[base_spi + @spi_plus, 1].max, 99999].min
  25. for state in states do n *= state.spi_rate / 100.0 end
  26. n = [[Integer(n), 1].max, 99999].min
  27. return n
  28. end
  29. def agi
  30. n = [[base_agi + @agi_plus, 1].max, 99999].min
  31. for state in states do n *= state.agi_rate / 100.0 end
  32. n = [[Integer(n), 1].max, 99999].min
  33. return n
  34. end
  35. def maxhp=(new_maxhp)
  36. @maxhp_plus += new_maxhp - self.maxhp
  37. @maxhp_plus = [[@maxhp_plus, -999999].max, 999999].min
  38. @hp = [@hp, self.maxhp].min
  39. end
  40. def maxmp=(new_maxmp)
  41. @maxmp_plus += new_maxmp - self.maxmp
  42. @maxmp_plus = [[@maxmp_plus, -999999].max, 999999].min
  43. @mp = [@mp, self.maxmp].min
  44. end
  45. def atk=(new_atk)
  46. @atk_plus += new_atk - self.atk
  47. @atk_plus = [[@atk_plus, -99999].max, 99999].min
  48. end
  49. def def=(new_def)
  50. @def_plus += new_def - self.def
  51. @def_plus = [[@def_plus, -99999].max, 99999].min
  52. end
  53. def spi=(new_spi)
  54. @spi_plus += new_spi - self.spi
  55. @spi_plus = [[@spi_plus, -99999].max, 99999].min
  56. end
  57. def agi=(new_agi)
  58. @agi_plus += new_agi - self.agi
  59. @agi_plus = [[@agi_plus, -99999].max, 99999].min
  60. end
  61. end
复制代码
QQ:2223942063
Q群:365819625
贪吃方1.4
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-15 22:40

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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