赞 | 0 |
VIP | 7 |
好人卡 | 3 |
积分 | 1 |
经验 | 2080 |
最后登录 | 2013-7-12 |
在线时间 | 63 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 63 小时
- 注册时间
- 2010-12-19
- 帖子
- 31
|
- #==============================================================================
- # ■ Window_ActorCommand
- #------------------------------------------------------------------------------
- # 选择角色命令(如「攻击」或「技能」)的窗口。
- #==============================================================================
- class Window_ActorCommand < Window_Command
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- #super(128, [], 1, 4)
- super(128, [], 1, 3)
- self.active = false
- # 添加部分
- self.y = 32
- end
- #--------------------------------------------------------------------------
- # ● 设置
- # actor : 角色
- #--------------------------------------------------------------------------
- def setup(actor)
- s1 = Vocab::attack
- s2 = Vocab::skill
- s3 = Vocab::guard
- s4 = Vocab::item
- if actor.class.skill_name_valid # 是否指定职业技能文字
- s2 = actor.class.skill_name # 替换「技能」命令文字
- end
- #@commands = [s1, s2, s3, s4]
- @commands = [s1, s2, s4]
- #@item_max = 4
- @item_max = 3
- refresh
- self.index = 0
- end
- end
复制代码 马克好了,可以替换原来的Window_ActorCommand了。alias神马的根本用不上,默认脚本就这样被破坏了。 |
|