赞 | 7 |
VIP | 20 |
好人卡 | 0 |
积分 | 16 |
经验 | 11472 |
最后登录 | 2024-7-10 |
在线时间 | 526 小时 |
Lv3.寻梦者 宛若
- 梦石
- 0
- 星屑
- 1568
- 在线时间
- 526 小时
- 注册时间
- 2007-8-19
- 帖子
- 1493
|
- $弓乱射特技ID = 57
- $弓乱射对象个数 = 3
- class Scene_Battle
- alias diyrpg_stb set_target_battlers
- def set_target_battlers(scope)
- if @active_battler.is_a?(Game_Actor)
- if @active_battler.current_action.kind == 1
- if @active_battler.current_action.skill_id == $弓乱射特技ID
- $弓乱射对象个数.times{
- @active_battler.current_action.decide_random_target_for_actor
- index = @active_battler.current_action.target_index
- @target_battlers.push($game_troop.smooth_target_enemy(index))
- }
- return
- end
- end
- end
- diyrpg_stb(scope)
- end
- end
复制代码 |
评分
-
查看全部评分
|