fork download
  1. class Game_Message
  2. AUTO_FLAG_SW = 1 # オートモードのオン/オフ用スイッチ番号
  3. AUTO_WAIT_VAR = 1 # ウェイト時間参照用の変数番号
  4.  
  5. def auto_mode?; $game_switches[AUTO_FLAG_SW]; end
  6. def auto_mode_flip; $game_switches[AUTO_FLAG_SW] ^= true; end
  7. def auto_wait; $game_variables[AUTO_WAIT_VAR]; end
  8. end
  9.  
  10. class Window_Message < Window_Base
  11. alias __old_update update
  12. def update
  13. __old_update
  14. auto_mode_check
  15. end
  16.  
  17. alias __old_input_pause input_pause
  18. def input_pause
  19. if $game_message.auto_mode?
  20. self.pause = true
  21. wait($game_message.auto_wait)
  22. self.pause = false
  23. else
  24. __old_input_pause
  25. end
  26. end
  27.  
  28. def auto_mode_check
  29. if Input.trigger?(:L)
  30. Input.update
  31. Sound.play_ok
  32. $game_message.auto_mode_flip
  33. end
  34. end
  35. end
  36.  
Runtime error #stdin #stdout 0.01s 7460KB
stdin
Standard input is empty
stdout
Standard output is empty