AdditionalPylons
Member
I decided to download the trial to see how different it was from XP. But uh, the battlebacks are nauseating. How do you change them? I'm really stating to feel sick.... :dead:
#==============================================================================
# â– VX-RGSS2-7 Change Battle Background [Ver.1.0.0] by Claimh
#------------------------------------------------------------------------------
# English Translation By: Elemental Crisis [http://www.rpgcrisis.net]
#------------------------------------------------------------------------------
# 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"
}
end
#==============================================================================
# â– Spriteset_Battle
#==============================================================================
class Spriteset_Battle
#--------------------------------------------------------------------------
# â—
#-----------------------------------
# * Create Battlefloor Sprite
#-----------------------------------
def create_battlefloor
@battlefloor_sprite = Sprite.new(@viewport1)
@battlefloor_sprite.bitmap = Cache.system("BattleFloor")
@battlefloor_sprite.x = 0
@battlefloor_sprite.y = 192
@battlefloor_sprite.z = 1
@battlefloor_sprite.opacity = 128
end