for target in $scene.target_battlers
if target.is_a?(Game_Actor)
skill=$scene.skill
c = target.class_id == 1 ? true:false
if c and not target.skills.include?(skill)
target.learn_skill(skill.id)
textinfo = target.name + " 学会了 "
textinfo += "\\c[4]["+skill.name+"]"
$game_temp.message_text = textinfo
end
end
end [LINE]1,#dddddd[/LINE]版务信息:本贴由楼主自主结贴~作者: wy29 时间: 2008-3-6 22:55
提示: 作者被禁止或删除 内容自动屏蔽作者: stella 时间: 2008-3-6 23:03
如果我想再多一个条件判断:角色的状态为 54 时才可以学会是不是可以写成这样?
for target in $scene.target_battlers
if target.is_a?(Game_Actor)
skill=$scene.skill
c = target.class_id == 13 ? true:false
if c and not target.skill_learn?(skill.id) and target.states.include?(54)
target.learn_skill(skill.id)
textinfo = target.name + " 学会了 "
textinfo += "\\c[4]["+skill.name+"]"
$game_temp.message_text = textinfo
end
end;end作者: stella 时间: 2008-3-6 23:09
写成上面这样战斗时就出错了。。SyntaxError作者: wy29 时间: 2008-3-6 23:12
提示: 作者被禁止或删除 内容自动屏蔽