加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 crow2006 于 2014-4-19 13:24 编辑
怎样表示角色1已学会的技能数量?
或者角色1--角色8一共学会了多少个技能?
def 已学会技能数量 result = 0 for i in 1..999 for b in 1..8 result += 1 if $game_actors[b].skill_learn?($data_skills[i]) end end return result end
def 已学会技能数量
result = 0
for i in 1..999
for b in 1..8
result += 1 if $game_actors[b].skill_learn?($data_skills[i])
end
end
return result
end
这样好像计算时候有点卡。 |