I'm using Seph's Intro & Splash screen script, but I want to change the BGM that plays in the background to be different from the BGM played on the title screen.
Right now the original scripts looked like:
Line 153:
and...
Line 186:
I'm trying to change these two codes to play instead: Audio/BGM/'favor_house_atlantic' (a file I already put into the Audio/BGM folder.) I thought the codes to play the new audio file would be:
and
but that just gives me errors. Any suggestions?':|
Right now the original scripts looked like:
Line 153:
Code:
Introduction_BGM = load_data('Data/System.rxdata').title_bgm
and...
Line 186:
Code:
def main_audio
# Play Introduction BGM
Audio.bgm_play('Audio/BGM/' + Introduction_BGM.name)
end
I'm trying to change these two codes to play instead: Audio/BGM/'favor_house_atlantic' (a file I already put into the Audio/BGM folder.) I thought the codes to play the new audio file would be:
Code:
Introduction_BGM = load_data('Audio/BGM/'favor_house_atlantic')
and
Code:
def main_audio
# Play Introduction BGM
Audio.bgm_play('Audio/BGM/'favor_house_atlantic')
end
but that just gives me errors. Any suggestions?':|