Project1

标题: 如何让队伍中特定成员不参与战斗,请大家帮助 [打印本页]

作者: zhaoxun96    时间: 2014-7-26 17:31
标题: 如何让队伍中特定成员不参与战斗,请大家帮助
RT,让一个特定角色在队伍中,但是不参与战斗。虽然我想过每次战斗的时候都把他给踢出队伍但是感觉好麻烦......
作者: VIPArcher    时间: 2014-7-26 17:40
本帖最后由 VIPArcher 于 2014-7-26 17:43 编辑


  1. #======================================================
  2. # 某些角色不参与战斗,柳柳@66rpg.com
  3. #======================================================
  4. class Scene_Battle
  5.   #====================================================
  6.   # 不参与战斗的编号写在这里
  7.   #====================================================
  8.   I_AM_NPC = [1, 2, 3]
  9.   
  10.   
  11.   
  12.   # 不参与战斗的角色,进入战斗的时候临时离队
  13.   alias o_start start unless $@
  14.   def start
  15.     @no_fight = []
  16.     for aid in I_AM_NPC
  17.       if $game_party.members.include?($game_actors[aid])
  18.         @no_fight.push(aid)
  19.         $game_party.remove_actor(aid)
  20.       end
  21.     end
  22.     o_start
  23.   end
  24.   
  25.   # 离队的角色,结束战斗的时候叫回来
  26.   alias o_terminate terminate unless $@
  27.   def terminate
  28.     o_terminate
  29.     for aid in @no_fight
  30.       $game_party.add_actor(aid)
  31.     end
  32.   end
  33.   
  34. end
复制代码





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