10-16-2009, 09:43 PM
hello,
this is working good but after a game over, when restart game, the game over music was still going on on the new map,
and the other music were off (including Battle music).
I manage to get it to normal by adding after :
this code :
no biggy... but i have thought it might be usefull for some...
this is working good but after a game over, when restart game, the game over music was still going on on the new map,
and the other music were off (including Battle music).
I manage to get it to normal by adding after :
Code:
def punk_loaddatabase
# Loading database.
$data_actors = load_data("Data/Actors.rxdata")
$data_classes = load_data("Data/Classes.rxdata")
$data_skills = load_data("Data/Skills.rxdata")
$data_items = load_data("Data/Items.rxdata")
$data_weapons = load_data("Data/Weapons.rxdata")
$data_armors = load_data("Data/Armors.rxdata")
$data_enemies = load_data("Data/Enemies.rxdata")
$data_troops = load_data("Data/Troops.rxdata")
$data_states = load_data("Data/States.rxdata")
$data_animations = load_data("Data/Animations.rxdata")
$data_tilesets = load_data("Data/Tilesets.rxdata")
$data_common_events = load_data("Data/CommonEvents.rxdata")
$data_system = load_data("Data/System.rxdata")
this code :
Code:
Audio.me_stop
Audio.bgs_stop
Audio.bgm_stop
no biggy... but i have thought it might be usefull for some...