Project1

标题: 关于技能使用条件的问题 [打印本页]

作者: millile    时间: 2009-8-4 16:14
提示: 作者被禁止或删除 内容自动屏蔽
作者: 「旅」    时间: 2009-8-4 17:03
因为return会结束方法,所以 只要第一个没有,就会直接返回false。

for i in $game_trooop.enemies
if not i.state?(7) and skill_id=1
a =  false
else
a = true
end
return true if a == true # 如果a为false,for就会判断下个敌人。
end
作者: millile    时间: 2009-8-4 18:22
提示: 作者被禁止或删除 内容自动屏蔽
作者: ONEWateR    时间: 2009-8-4 18:24
a = 0
for i in $game_trooop.enemies
a += 1 if not i.state?(7) and skill_id=1
end
以下自己写~嗯嗯
作者: millile    时间: 2009-8-4 18:54
提示: 作者被禁止或删除 内容自动屏蔽
作者: ONEWateR    时间: 2009-8-4 19:03
- - ~ 看来你误会了我的意思~ 抱歉,误人子弟~ - -~

a = 0
for i in $game_trooop.enemies
a += 1 if not i.state?(7) and skill_id=1
end
return (a>0)
作者: 「旅」    时间: 2009-8-4 19:59
本帖最后由 「旅」 于 2009-8-4 20:04 编辑
- - ~ 看来你误会了我的意思~ 抱歉,误人子弟~ - -~

a = 0
for i in $game_trooop.enemies
a += 1 if not i.state?(7) and skill_id=1
end
return (a>0)
ONEWateR 发表于 2009-8-4 19:03


一水看漏了个not,还有别的技能时a等于0- -+

于是抢生意-v-
  1. a = 0
  2. for i in $game_trooop.enemies
  3. a += 1 if i.state?(7) and skill_id==1
  4. end
  5. return (a>0) if skill_id==1
复制代码
ps:楼主,==才是等于,=是代入。
作者: millile    时间: 2009-8-4 20:43
提示: 作者被禁止或删除 内容自动屏蔽




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