im using this option script off htis other site, and seem to be getting this error
stating "Undefined bgm.volume for nil:nilclass"
Here is the part of the script:
def bgm_play(bgm)
@playing_bgm = bgm
#@music_name = bgm.name
if bgm != nil and bgm.name != ""
Audio.bgm_play("Audio/BGM/" + bgm.name, bgm.volume*$game_music.bgm_volume/100, bgm.pitch)
else
Audio.bgm_stop
end
Graphics.frame_reset
end