加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 灵风斩月 于 2016-7-17 21:41 编辑
就是在使用本技能的时候让敌方先进行一次攻击
几乎是跑遍了所有能问的地方最后在rpg制作大师吧得到大神的讲解
#-------------------------------------------------------------------------- # ● 确定动作速度 #-------------------------------------------------------------------------- #脚本来自dspzzy def make_action_speed @current_action.speed = agi + rand(10 + agi / 4) @current_action.speed -= 10000 if @current_action.skill_id == 2 end
#--------------------------------------------------------------------------
# ● 确定动作速度
#--------------------------------------------------------------------------
#脚本来自dspzzy
def make_action_speed
@current_action.speed = agi + rand(10 + agi / 4)
@current_action.speed -= 10000 if @current_action.skill_id == 2
end
|