HELP WITH BACKGROUNDS

Posts

Pages: 1
"SOLVED!!!!" I actually figured this out on my own! Thanks to anyone who was investigating this!

Hello there everyone,
I am currently trying to figure out how to use a picture for the battle background. I am using a script to associate the picture stored in graphics/system to associate it to the map that I want it to appear on. But for some reason, for one of the maps I am getting a script error when everything appears to be fine. Here is the script... for some reason I get the syntax script error for number 8... and only number 8. Number 6 appears to work fine. I've tried putting a period at the end, or nothing at the end, but it keeps coming back as an error. If I remove number 8... it works fine.
#==============================================================================
# â €“ VX-RGSS2-7 Change Battle Background by Claimh
#------------------------------------------------------------------------------
# English Translation By: Elemental Crisis
#------------------------------------------------------------------------------
# Changes the battle background.
#==============================================================================


module BattleBack
# Select Battle Background Type
# 0:Current map with wave effect for battle background (Default VX Style).
# 1:Current map used as battle background.
# 2:Uses a picture for battle background.
BB_TYPE = 2

# Display Battle Floor
BT_FLOOR = false

# Picture (Only required if BB_TYPE = 2)
M_B_BACK = {
# Map ID => "Picture File Name(Graphics/System)"
1 => "Grassland",
6 => "CloudySky1",
8 => "Alley1",
}
end


#==============================================================================
# â €“ Spriteset_Battle
#==============================================================================
class Spriteset_Battle
#--------------------------------------------------------------------------
# â €”
end

Other than the error, I assumed that this script would be able to add the picture background... but still I have the melody zoom-in background happening... I have even deleted the script for the zoom-in background... yet I still have the zoom-in background showing up in battle. Any ideas what I am doing wrong?
Pages: 1