赞 | 153 |
VIP | 10 |
好人卡 | 39 |
积分 | 93 |
经验 | 146191 |
最后登录 | 2024-5-6 |
在线时间 | 2504 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 9280
- 在线时间
- 2504 小时
- 注册时间
- 2011-5-20
- 帖子
- 15389
|
- #======================================================
- # 某些角色不参与战斗,柳柳@66rpg.com
- #======================================================
- class Scene_Battle
- #====================================================
- # 不参与战斗的编号写在这里
- #====================================================
- I_AM_NPC = [1, 2, 3]
- # 不参与战斗的角色,进入战斗的时候临时轰走
- alias o_start start unless $@
- def start
- @no_fight = []
- for aid in I_AM_NPC
- if $game_party.members.include?($game_actors[aid])
- @no_fight.push(aid)
- $game_party.remove_actor(aid)
- end
- end
- o_start
- end
-
- # 被轰走的角色,结束战斗的时候叫回来
- alias o_terminate terminate unless $@
- def terminate
- o_terminate
- for aid in @no_fight
- $game_party.add_actor(aid)
- end
- end
-
- end
复制代码 |
评分
-
查看全部评分
|