赞 | 1 |
VIP | 0 |
好人卡 | 13 |
积分 | 5 |
经验 | 33457 |
最后登录 | 2024-8-8 |
在线时间 | 1409 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 457
- 在线时间
- 1409 小时
- 注册时间
- 2010-9-23
- 帖子
- 557
|
这个脚本应该能帮上忙。
脚本来源:ひきも記 作者:tomoaky- #==============================================================================
- # ★ 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
复制代码 |
评分
-
查看全部评分
|