Sorry was on the phone with the hubby.
By the way, to replace the original file you'd just name it the same thing... Window.png
Ok, ditch the other code and use this one
#==============================================================================# ■ Window_Message#==============================================================================class Window_Message < Window_Base #-------------------------------------------------------------------------- # * Main Processing of Fiber #-------------------------------------------------------------------------- alias custom_window_skin_update update def update custom_window_skin_update window_skin = $game_switches[65] ? "Window_Custom1" : "Window" self.windowskin = Cache.system(window_skin) @choice_window.windowskin = Cache.system(window_skin) endendthat should update properly now
editted sloppy alias name. Forgot to change it after testing it, changed it now