Main Menu
  • Welcome to The RPG Maker Resource Kit.

[Solved] Choice Window Trouble

Started by Syrubis, August 11, 2015, 09:57:01 AM

0 Members and 1 Guest are viewing this topic.

Syrubis

I'm at my wits end. Basically all I want to do is change the choice window to either match the transparency of the text box, or erase it all together. As you can see in my screenshot it's using the windowskin (which it should) but I don't want it to.



I'm pretty much on my hands and knees here, anyone have any idea how to fix this? I've checked almost every inch of google search and just about every vx ace forum I can find to no avail.

&&&&&&&&&&&&&

you want it to be transparent?
What scripts are you using?
&&&&&&&&&&&&&&&&

Syrubis

Yup, and at the moment just these.



As far as I can tell I can't fix it with Yanfly's message system.

&&&&&&&&&&&&&

is the choice window modified at all?

if it's the default script, then here

#== Snippet ==
class Window_ChoiceList < Window_Command
  def initialize(message_window)
    @message_window = message_window
    super(0, 0)
    self.openness = 0
    deactivate
    # change the 0 to any number you want, between 0 and 255
    self.opacity = 0
    # right here ^
  end
end
#== snip ==


just place it above main and stuff
&&&&&&&&&&&&&&&&

Syrubis

You're an absolute life saver! It works perfectly. I can't thank you enough, I was getting so frustrated!
And thank you for being so quick! I was expecting a lengthy wait at least, can't express my levels of gratitude haha.

Thanks, Boe!

&&&&&&&&&&&&&

&&&&&&&&&&&&&&&&