Project1
标题:
状态无效果
[打印本页]
作者:
沉默是惊
时间:
2013-7-30 16:12
标题:
状态无效果
帮忙看下,为什么17号状态对16号状态没放映,67对16号有反映。
if self.state?(16)
self.damage=0 unless attacker.state?(17)
elsif self.state?(16)
self.damage=0 unless attacker.state?(67)
end
复制代码
作者:
芯☆淡茹水
时间:
2013-7-30 20:39
if self.state?(16)
self.damage=0 if attacker.state?(17)
elsif self.state?(16)
self.damage=0 if attacker.state?(67)
end
复制代码
作者:
弗雷德
时间:
2013-7-31 09:55
if self.state?(16)
unless attacker.state?(17) or attacker.state?(67)
self.damage=0
end
end
复制代码
这样呢?
作者:
沉默是惊
时间:
2013-7-31 15:44
弗雷德 发表于 2013-7-31 09:55
这样呢?
可以了,3扣。
作者:
沉默是惊
时间:
2013-7-31 16:21
弗雷德 发表于 2013-7-31 09:55
这样呢?
貌似又出现问题了,本来我在这个脚本下面还有个状态的,把上面的改成你说的之后,下面的状态就不行了。怎么回事。
if self.state?(16)
unless attacker.state?(17) or attacker.state?(67)
self.damage = 0
end
elsif state?(4)
self.damage = ""
return
end
复制代码
作者:
弗雷德
时间:
2013-7-31 16:29
if self.state?(16)
unless attacker.state?(17) or attacker.state?(67)
self.damage = 0
end
elsif state?(4)
self.damage = ""
return
end
复制代码
这个语法不完整
if self.state?(16)
unless attacker.state?(17) or attacker.state?(67)
self.damage = 0
elsif self.state?(4)
self.damage = ""
return
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1