04-11-2011, 03:10 AM
Ugh... just when I think I figure something out.... I find out it didn't actually work, just a cheap hiding trick. Ugh.
The bold variables are NON-existent... I've removed the _Bg_Position and it works just great. Just a FYI.
------------------------
It must be me the problem I have for the background images doesn't appear in your demo. When I try to duplicate what your Demo has it gives me this stupid argument error: Wrong number of Arguments (2 for 1) at this line:
Code:
class Window_BattleStatus < Window_Base
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
super(Battle_Window[0], Battle_Window[1], Battle_Window[2], Battle_Window[3])
if Battle_Window_Backgroud != nil and Battle_Window_Backgroud != ''
@background_image = Sprite.new
@background_image.bitmap = RPG::Cache.picture(Battle_Window_Backgroud)
@background_image.x = Battle_Window_Bg_Postion[0]
@background_image.y = Battle_Window_Bg_Postion[1]
@background_image.z = 899
end
The bold variables are NON-existent... I've removed the _Bg_Position and it works just great. Just a FYI.
------------------------
It must be me the problem I have for the background images doesn't appear in your demo. When I try to duplicate what your Demo has it gives me this stupid argument error: Wrong number of Arguments (2 for 1) at this line:
Quote:Code:#--------------------------------------------------------------------------
# * Start Skill Selection
#--------------------------------------------------------------------------
alias start_skill_select_ibc start_skill_select
def start_skill_select
start_skill_select_ibc
@skill_window.dispose
@skill_window = Window_Skill.new(@active_battler, @commands_category)
@skill_window.help_window = @help_window
end
No clue what's going on there... Maybe the Battle Scripts and/or Add-ons are conflicted with one or more of the other scripts I have. But how do you find out which script it's conflicting with?
----------------------------------------
Ugh...... it's really frustrating, but I want it to be right. Maybe I'm trying to hard... Maybe.