Yar_Kramer
Member
Okay, so ... I'm working on an addition to the combat system so that it will only play the BattleEnd ME if the combat music is not the same as the map music. However, I'm having a bit of trouble working out the code for "if battle_bgm is not the same as the map BGM." I've tried this:
And I've tried this:
It doesn't seem to work, though, in that it always plays the battle end ME. So, uh ... what am I doing wrong?
PHP:
if $game_system.battle_bgm != $game_temp.map_bgm
$game_system.me_play($game_system.battle_end_me)
end
And I've tried this:
PHP:
if $game_system.battle_bgm == $game_temp.map_bgm
else
$game_system.me_play($game_system.battle_end_me)
end
It doesn't seem to work, though, in that it always plays the battle end ME. So, uh ... what am I doing wrong?