下面的脚本是全体技能会攻击所有携带2号状态的目标,只对一方生效的话,参照楼上的回复修改
class Scene_Battle
alias ori_set_target_battlers set_target_battlers
def set_target_battlers(scope)
ori_set_target_battlers(scope)
if scope == 2
if rand(100) < 50
targets = @target_battlers.find_all{|battler|battler.states.include?(2)}
@target_battlers = targets if targets != []
end
end
end
end
其实你可以先看看RMXP脚本与F1,累积一定的基础,再制作游戏
我从接触RMXP到现在都一年了,看F1,还是会发现原来理解错的东西或者新东西以及看不懂的东西