Kain Nobel
Member
Question #1
How do you call a BGM to play in an event?
I know the syntax to play some kind of music, like $game_system.bgm_play($data_system.title_bgm), which I saw in another script, but I couldn't get it to work when I tried...
$game_system.bgm_play("001-Battle01")
I even tried...
$game_system.bgm_play('001-Battle01', '100', '100')
Because I know the script might want the extra information...
Even...
$game_system.bgm_play(RPG::AudioFile['001-Battle01', 100, 100])
But nada. I've gotten lost in the Help file too for this stupid syntax.
Question #2
When you do have the opprotunity to call BGM name, volume, pitch, what exactly does the syntax have to be, and does the '#' or the "#" matter around the numeric values?
I'm actually setting these with public access variables, so it would be called bgm_play(@bgm_name, @bgm_v, @bgm_p) based off of what I put in the top of the script. Would the '#' and/or "#" matter when defining those as variables?
I'm not a newb scripter, believe it or not I've made a few here 'n there before, but it always comes to the simplest crap to get me stuck!
How do you call a BGM to play in an event?
I know the syntax to play some kind of music, like $game_system.bgm_play($data_system.title_bgm), which I saw in another script, but I couldn't get it to work when I tried...
$game_system.bgm_play("001-Battle01")
I even tried...
$game_system.bgm_play('001-Battle01', '100', '100')
Because I know the script might want the extra information...
Even...
$game_system.bgm_play(RPG::AudioFile['001-Battle01', 100, 100])
But nada. I've gotten lost in the Help file too for this stupid syntax.
Question #2
When you do have the opprotunity to call BGM name, volume, pitch, what exactly does the syntax have to be, and does the '#' or the "#" matter around the numeric values?
I'm actually setting these with public access variables, so it would be called bgm_play(@bgm_name, @bgm_v, @bgm_p) based off of what I put in the top of the script. Would the '#' and/or "#" matter when defining those as variables?
I'm not a newb scripter, believe it or not I've made a few here 'n there before, but it always comes to the simplest crap to get me stuck!