Project1

标题: rpgmakerxp软件能修改力量上限数字 [打印本页]

作者: wanggeng0    时间: 2014-11-26 23:01
标题: rpgmakerxp软件能修改力量上限数字
比如我要改成力量为10000
作者: chd114    时间: 2014-11-28 22:13
修改最大值?
作者: chd114    时间: 2014-11-29 09:59
Game_Battler 1里面可以找到这一段
  1.   #--------------------------------------------------------------------------
  2.   # ● 获取力量
  3.   #--------------------------------------------------------------------------
  4.   def str
  5.     n = [[base_str + @str_plus, 1].max, 999].min
  6.     for i in @states
  7.       n *= $data_states[i].str_rate / 100.0
  8.     end
  9.     n = [[Integer(n), 1].max, 999].min
  10.     return n
  11.   end
复制代码
以及
  1.   #--------------------------------------------------------------------------
  2.   # ● 设置力量
  3.   #     str : 新的力量
  4.   #--------------------------------------------------------------------------
  5.   def str=(str)
  6.     @str_plus += str - self.str
  7.     @str_plus = [[@str_plus, -999].max, 999].min
  8.   end
复制代码
把999改成10000




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