赞 | 0 |
VIP | 0 |
好人卡 | 4 |
积分 | 1 |
经验 | 1935 |
最后登录 | 2017-8-28 |
在线时间 | 40 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 40 小时
- 注册时间
- 2011-5-3
- 帖子
- 28
|
详尽帮助脚本763行开始替换下面脚本...- #==============================================================================
- # ■ Window_Item
- #------------------------------------------------------------------------------
- # アイテム画面などで、所持アイテムの一覧を表示するウィンドウです。
- #==============================================================================
- class Window_Item < Window_Selectable
- #--------------------------------------------------------------------------
- # ● ヘルプテキスト更新
- #--------------------------------------------------------------------------
- def update_help
- if $game_switches[1] == false
- @help_window.set_text(item == nil ? "" : item.description)
- else
- @help_window.set_text(item)
- #修正窗口位置
- @help_window.set_pos(self.x,self.y,self.width,self.oy,self.index,@column_max)
- end
- end
- end
- #==============================================================================
- # ■ Window_Skill^
- #------------------------------------------------------------------------------
- # スキル画面などで、使用できるスキルの一覧を表示するウィンドウです。
- #==============================================================================
- class Window_Skill < Window_Selectable
- #--------------------------------------------------------------------------
- # ● ヘルプテキスト更新
- #--------------------------------------------------------------------------
- def update_help
- if $game_switches[1] == false
- @help_window.set_text(skill == nil ? "" : skill.description)
- else
- #修正窗口位置
- @help_window.set_text(skill)
- @help_window.set_pos(self.x,self.y,self.width,self.oy,self.index,@column_max)
- end
- end
- end
- #==============================================================================
- # ■ Window_Equip^
- #------------------------------------------------------------------------------
- # 装備画面で、アクターが現在装備しているアイテムを表示するウィンドウです。
- #==============================================================================
- class Window_Equip < Window_Selectable
- #--------------------------------------------------------------------------
- # ● ヘルプテキスト更新
- #--------------------------------------------------------------------------
- def update_help
- if $game_switches[1] == false
- @help_window.set_text(item == nil ? "" : item.description)
- else
- @help_window.set_text(item)
- #修正窗口位置
- @help_window.set_pos(self.x,self.y,self.width,self.oy,self.index,@column_max)
- end
- end
- end
- #==============================================================================
- # ■ Window_ShopBuy^
- #------------------------------------------------------------------------------
- # ショップ画面で、購入できる商品の一覧を表示するウィンドウです。
- #==============================================================================
- class Window_ShopBuy < Window_Selectable
- #--------------------------------------------------------------------------
- # ● ヘルプテキスト更新
- #--------------------------------------------------------------------------
- def update_help
- if $game_switches[1] == false
- @help_window.set_text(item == nil ? "" : item.description)
- else
- @help_window.set_text(item)
- #修正窗口位置
- @help_window.set_pos(self.x,self.y,self.width,self.oy,self.index,@column_max)
- end
- end
- end
复制代码 |
|