加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 neverstop 于 2015-6-8 09:42 编辑
就是,在一个范围内获取状态,然后判断状态的备注里有没有注释<bad>,
若无,则继续获取。若有,则添加
a = rand(114) b = state(a).note.include?("bad")? 5 : 1 while b < 5 a = rand(114) b = state(a).note.include?("bad")? 5 : 1 end add_state(a)
a = rand(114)
b = state(a).note.include?("bad")? 5 : 1
while b < 5
a = rand(114)
b = state(a).note.include?("bad")? 5 : 1
end
add_state(a)
自己写了一段,但是在判断状态备注的时候出问题了,想知道如何正确获取状态的备注。
麻烦了~{:2_249:}
这样要简单很多哇~and谢谢XD大大
b = (1..114).select { |x| $data_states[x].note.include?("<bad>") } b = b.sample
b = (1..114).select { |x| $data_states[x].note.include?("<bad>") }
b = b.sample
|