I've been working on this for awhile, and one portion has me stumped.
In Hero Rental (a game I'm scripting for, link found in my signature - Userbar) I was making a bunch of Extras. One of them was a script that would allow for a unique experiance. (no not THAT experiance)
You can change the text background.
However, whenever I tried it, it didn't work.
First off, I created the portion in the title menu.
This isn't a problem, so i believe.
I have a lot of coding in it, but that is the main portion, i have all the loading and stuff, it works.
However, the problem comes in this part of the extras section, it bumps me to a whole new game, without changing it. I know I am probably using the wrong coding, if i am, can you tell me what i should use?
Any ideas?
In Hero Rental (a game I'm scripting for, link found in my signature - Userbar) I was making a bunch of Extras. One of them was a script that would allow for a unique experiance. (no not THAT experiance)
You can change the text background.
However, whenever I tried it, it didn't work.
First off, I created the portion in the title menu.
This isn't a problem, so i believe.
s1 = "Begin a Journey"
s2 = "Continue Your Quest"
s3 = "Extras"
s4 = "End Game"
@command_window = Window_Command.new(215, [s1, s2, s3, s4])
@command_window.back_opacity = 0
@command_window.x = 150 - @command_window.width / 2
@command_window.y = 200
s2 = "Continue Your Quest"
s3 = "Extras"
s4 = "End Game"
@command_window = Window_Command.new(215, [s1, s2, s3, s4])
@command_window.back_opacity = 0
@command_window.x = 150 - @command_window.width / 2
@command_window.y = 200
However, the problem comes in this part of the extras section, it bumps me to a whole new game, without changing it. I know I am probably using the wrong coding, if i am, can you tell me what i should use?
#--------------------------------------------------------------------------
# * Command: Extras
#==========================================================================
def command_extras(nosound = false)
x5 = "Blue"
x6 = "Red"
@command_window = Window_Command.new(150, [x5, x6])
x5 = @windowskin_name = $Blue01
x6 = @windowskin_name = $Red01
return
end
# Update game screen
Graphics.update
# Update input information
Input.update
end
# * Command: Extras
#==========================================================================
def command_extras(nosound = false)
x5 = "Blue"
x6 = "Red"
@command_window = Window_Command.new(150, [x5, x6])
x5 = @windowskin_name = $Blue01
x6 = @windowskin_name = $Red01
return
end
# Update game screen
Graphics.update
# Update input information
Input.update
end
Any ideas?