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里面可以找到这一段
#--------------------------------------------------------------------------
# ● 获取力量
#--------------------------------------------------------------------------
def str
n = [[base_str + @str_plus, 1].max, 999].min
for i in @states
n *= $data_states[i].str_rate / 100.0
end
n = [[Integer(n), 1].max, 999].min
return n
end
复制代码
以及
#--------------------------------------------------------------------------
# ● 设置力量
# str : 新的力量
#--------------------------------------------------------------------------
def str=(str)
@str_plus += str - self.str
@str_plus = [[@str_plus, -999].max, 999].min
end
复制代码
把999改成10000
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1