Project1

标题: 關於這這個腳本功能 "HP少於....發動XX狀態" [打印本页]

作者: stanyanyan0    时间: 2012-9-14 13:21
标题: 關於這這個腳本功能 "HP少於....發動XX狀態"
我在其他發問的地方看到這個狀態寫法

看到scence_battle 46行下

  #--------------------------------------------------------------------------
  # ● 更新画面
  #--------------------------------------------------------------------------
  def update
    a = $game_party.members
    for i in 0...a.size
      #这里假定20号状态是虚弱状态,你可以改成其他的状态ID
      a.hp < a.maxhp / 4 ? a.add_state(20) : a.remove_state(20)
    end

  end

這個功能是當角色血量少於四分之一時 可以發動第20號狀態

但是這功能每個角色都會自動使用
可不可以限定只有1號角色可以使用?dsu_plus_rewardpost_czw
作者: stanyanyan0    时间: 2012-9-14 13:40
@protosssonny
這本來就是你回答的 因為我是從這裡看到的呀
http://rpg.blue/forum.php?mod=viewthread&tid=243402

呵呵


作者: 怪蜀黍    时间: 2012-9-14 13:41
只对队伍中的第3名角色起作用(3减1等于2)
  1.   def update
  2.     a = $game_party.members[2]#第3名角色就要写[2],第1名角色写[0]:
  3.     a.hp < a.maxhp / 4 ? a.add_state(20) : a.remove_state(20)
  4.   end
复制代码
只对ID为3的角色起作用
  1.   def update
  2.     a = $game_actors[3]#第3名角色就要写[3]:
  3.     a.hp < a.maxhp / 4 ? a.add_state(20) : a.remove_state(20)
  4.   end
复制代码





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