赞 | 0 |
VIP | 0 |
好人卡 | 4 |
积分 | 1 |
经验 | 1935 |
最后登录 | 2017-8-28 |
在线时间 | 40 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 40 小时
- 注册时间
- 2011-5-3
- 帖子
- 28
|
本帖最后由 恋百里 于 2011-5-4 12:36 编辑
修改了两个类得一个函数.你可以找到相应的类替换函数或者直接插入main前面
全局变量$LBL_actor_attack控制出现攻击选项的角色.
例想要一号角色显示攻击选项则在游戏事件中填脚本$LBL_actor_attack[1]=false
不想出现了就改$LBL_actor_attack[1]=true- $LBL_actor_attack=[]
- #==============================================================================
- # ■ Window_ActorCommand
- #------------------------------------------------------------------------------
- # 选择角色命令(如「攻击」或「技能」)的窗口。
- #==============================================================================
- class Window_ActorCommand < Window_Command
- attr_reader :LBL_ #用于控制是否为不能攻击开关
- #--------------------------------------------------------------------------
- # ● 设置
- # actor : 角色
- #--------------------------------------------------------------------------
- def setup(actor)
- p actor.class_id
- if $LBL_actor_attack[actor.class_id]==false
- s1 = Vocab::attack
- s2 = Vocab::skill
- s3 = Vocab::guard
- s4 = Vocab::item
- @LBL_=true
- else
- s1 = Vocab::skill
- s2 = Vocab::guard
- s3 = Vocab::item
- @LBL_=false
- end
- if actor.class.skill_name_valid # 是否指定职业技能文字
- s2 = actor.class.skill_name # 替换「技能」命令文字
- end
- @commands = [s1, s2, s3, s4]
- @item_max = 4
- refresh
- self.index = 0
- end
- end
- ###################################################################
- class Scene_Battle < Scene_Base
- def update_actor_command_selection
- if Input.trigger?(Input::B)
- Sound.play_cancel
- prior_actor
- elsif Input.trigger?(Input::C)
- if @actor_command_window.LBL_==false
- case @actor_command_window.index
- when 0 # 技能
- Sound.play_decision
- start_skill_selection
- when 1 # 防御
- Sound.play_decision
- @active_battler.action.set_guard
- when 2 # 物品
- Sound.play_decision
- start_item_selection
- end
- else
- case @actor_command_window.index
- when 0 # 攻击
- Sound.play_decision
- @active_battler.action.set_attack
- start_target_enemy_selection
- when 1 # 技能
- Sound.play_decision
- start_skill_selection
- when 2 # 防御
- Sound.play_decision
- @active_battler.action.set_guard
- next_actor
- when 3 # 物品
- Sound.play_decision
- start_item_selection
- end
- end
- end
- end
- end
复制代码 |
|