赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-11-17 |
在线时间 | 9415 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21636
- 在线时间
- 9415 小时
- 注册时间
- 2012-6-19
- 帖子
- 7118
|
- #==============================================================================
- # ★ RGSS3_先頭並び替え不可 Ver1.0
- #==============================================================================
- =begin
- 作者:tomoaky
- webサイト:ひきも記 (http://hikimoki.sakura.ne.jp/)
- パーティの先頭にいるアクターは並び替えできないように制限します。
- 2012.09.14 Ver1.0
- 公開
- =end
- #==============================================================================
- # ■ Window_MenuStatus
- #==============================================================================
- class Window_MenuStatus
- #--------------------------------------------------------------------------
- # ● 決定ボタンが押されたときの処理
- #--------------------------------------------------------------------------
- alias tmtopfix_window_menustatus_process_ok process_ok
- def process_ok
- if @pending_index >= 0 && (index == 0 || @pending_index == 0)
- Sound.play_buzzer
- else
- tmtopfix_window_menustatus_process_ok
- end
- end
- end
复制代码 |
评分
-
查看全部评分
|