赞 | 0 |
VIP | 47 |
好人卡 | 14 |
积分 | 1 |
经验 | 6342 |
最后登录 | 2015-10-31 |
在线时间 | 466 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 466 小时
- 注册时间
- 2006-2-25
- 帖子
- 1863
|
打开脚本编辑器
找到Window_ActorCommand脚本
把第20行 s1 = Vocab::attack 去掉
再把第27行 @commands = [s1, s2, s3, s4] 改成 @commands = [s2, s3, s4]
还有Scene_Battle脚本
第308-321行
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
替换成以下
when 0 # 特技
Sound.play_decision
start_skill_selection
when 1 # 防御
Sound.play_decision
@active_battler.action.set_guard
next_actor
when 2 # 物品
Sound.play_decision
start_item_selection 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|