Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #==============================================================================
- # [RGSS] Always Fight
- # Version : 1.0
- # Author : LowlingLife
- #==============================================================================
- # Script ini akan menghilangkan Party Command Window sehingga battle akan
- # selalu Fight.
- #==============================================================================
- #==============================================================================
- # EDITING BEYOND THIS LINE CAN CAUSE DAMAGE TO YOUR GAME, THEREFORE EDIT
- # WITH YOUR OWN RISK.
- #==============================================================================
- class Scene_Battle
- def start_phase2
- @phase = 2
- @actor_index = -1
- @active_battler = nil
- @actor_command_window.active = false
- @actor_command_window.visible = false
- $game_temp.battle_main_phase = false
- $game_party.clear_actions
- unless $game_party.inputable?
- start_phase4
- end
- end
- def update_phase2
- start_phase3
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment