赞 | 2 |
VIP | 0 |
好人卡 | 34 |
积分 | 1 |
经验 | 62347 |
最后登录 | 2016-6-9 |
在线时间 | 900 小时 |
- 梦石
- 0
- 星屑
- 99
- 在线时间
- 900 小时
- 注册时间
- 2012-11-13
- 帖子
- 893
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 3106345123 于 2014-7-3 08:26 编辑
使用方法见注释
发现地址by@柳柳
- #======================================================
- # 某些角色不参与战斗,柳柳@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
复制代码 |
|