戦う/逃げるのコマンド入力をスキップします。
Script Preview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#============================================================================== # ★RGSS2 # STR17_パーティコマンド封印 v1.0 # # ・戦う/逃げるのコマンド入力をカットします。 # ・逃走できなくなるよ! # ・触れたら最後のシンボルエンカウント形式のゲームにどうぞ # #============================================================================== # ■ Scene_Battle #============================================================================== class Scene_Battle < Scene_Base # パーティコマンド選択の開始 alias start_party_command_selection_str17 start_party_command_selection def start_party_command_selection @party_command_window.y = 416 # あっちいけ start_party_command_selection_str17 end # パーティコマンド選択の更新 def update_party_command_selection next_actor # アクターコマンドに即移行 @info_viewport.ox = 128 # ビューポートの位置を即固定 end end |