New account registration is temporarily disabled.

[RMVX ACE] YANFLY MESSAGE SCRIPT CUSTOM WINDOW SKIN.

Posts

Pages: 1
Hello! I wanted to ask if there was a way to make the window skin used for the name window in the Yanfly Message script a seperate window skin from everything else in the game? This is the current one.


I want it to look like this


Script used
You'd use something like this:

self.windowskin = Cache.system("Window_Name")


and name your alternate windowskin as Window_Name.png
As for where to insert that code, you'll have to change Window_NameMessage, ideally in your own script added after the message system script.

e.g.
class Window_NameMessage < Window_Base
  alias old_initialize initialize
  def initialize
    old_initialize
    self.windowskin = Cache.system("Window_Name")
  end
end


Finally, the non scripting way to do this is make the name window transparent, and show a picture in the right spot to create your own backgrounds
Marrend
Guardian of the Description Thread
21806
Fixed your image link.
author=coelocanth
You'd use something like this:

self.windowskin = Cache.system("Window_Name")


and name your alternate windowskin as Window_Name.png
As for where to insert that code, you'll have to change Window_NameMessage, ideally in your own script added after the message system script.

e.g.
class Window_NameMessage < Window_Base
  alias old_initialize initialize
  def initialize
    old_initialize
    self.windowskin = Cache.system("Window_Name")
  end
end


Finally, the non scripting way to do this is make the name window transparent, and show a picture in the right spot to create your own backgrounds


Thank you! I was using pictures, but since throughout the game the Window height changes.
author=Marrend
Fixed your image link.


Yeah, that was something I noticed but couldn't figure out how to fix.
Pages: 1