VanCoolz

[RGSS] Always Fight

Jun 1st, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.02 KB | None | 0 0
  1. #==============================================================================
  2. # [RGSS] Always Fight
  3. # Version : 1.0
  4. # Author : LowlingLife
  5. #==============================================================================
  6. # Script ini akan menghilangkan Party Command Window sehingga battle akan
  7. # selalu Fight.
  8. #==============================================================================
  9. #==============================================================================
  10. # EDITING BEYOND THIS LINE CAN CAUSE DAMAGE TO YOUR GAME, THEREFORE EDIT
  11. # WITH YOUR OWN RISK.
  12. #==============================================================================
  13. class Scene_Battle
  14.   def start_phase2
  15.     @phase = 2
  16.     @actor_index = -1
  17.     @active_battler = nil
  18.     @actor_command_window.active = false
  19.     @actor_command_window.visible = false
  20.     $game_temp.battle_main_phase = false
  21.     $game_party.clear_actions
  22.     unless $game_party.inputable?
  23.       start_phase4
  24.     end
  25.   end
  26.   def update_phase2
  27.      start_phase3
  28.   end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment