Hi guys,
I got this script to remove the "monster emerged" message during battle.
Script:
CODE
#==============================================================================
# ** Emerge Message Removal by RPGI
#------------------------------------------------------------------------------
# Removes emerge message from 'Wait Gauge Battle System' by ziifee
#==============================================================================
class Scene_Battle < Scene_Base
alias start_mod start
def start
start_mod
@message_window.visible = false
end
def ziiwp_scene_process_battle_start
@message_window.clear
make_escape_ratio
process_battle_event
start_party_command_selection
$game_temp.zii_wait_battle = true
$game_troop.increase_turn
end
end
The only problem is I have to press the action button [enter] to start the battle sequence.
Is there a way to automatically start the battle sequence without pressing the action button?
by the way i'm using:
Tankentai SBS Script
Thanks