ok well i have 2 probs -_-
i am using rpg maker xp and im tryin to make a test game to learn all the things in the rpg maker prog but whenever i want to put in bgm in for example a cave i am putting in a code in :-> script editor> Game_system
but i am putting it here:
#--------------------------------------------------------------------------
# * Play Background Music
# bgm : background music to be played
#--------------------------------------------------------------------------
def bgm_play(bgm)
@playing_bgm = bgm
if bgm != nil and bgm.name != ""
Audio.bgm_play("Audio/BGM/" + bgm.name, bgm.volume, bgm.pitch)
else
Audio.bgm_stop
end
Graphics.frame_reset
at Audio.bgm_play("Audio/BGM/" + bgm.name, bgm.volume, bgm.pitch) i put Audio.bgm_play("Audio/BGM/" + 042-Dungeon08, 100.volume, 100.pitch) and then i get an error same is when i put Audio.bgm_play("Audio/BGM/" + 042Dungeon08, 100.volume, 100.pitch)
and Audio.bgm_play("Audio/BGM/" + Dungeon08, 100.volume, 100.pitch)
also my other problem is on an map.
i made a heaven scene on the map with a house. there is a kinda openng that needs to lead the hero to another map i have doine that but u have to click a button to do that like opening a real door while its only a hole without a door -_- but how can you change that so that when he walks in the hole that he goes to another map?? without talkin to that space or anything...
thnx in advance