The RPG Maker Resource Kit

RMRK RPG Maker Creation => RPG Maker General => General Scripting => Topic started by: &&&&&&&&&&&&& on June 14, 2013, 08:55:01 PM

Title: (RMVXA) Save file windowskin
Post by: &&&&&&&&&&&&& on June 14, 2013, 08:55:01 PM
Ello thar m8's.
I was messing around, and fiqured out how to change the window skin for each window separately. The problem is, I can't figure out how to change the window for the save file help window. I tried to do the same thing for it, but it just vomits an error on me. (I'm trying to change the part that says "Load which file?" to a different windowskin.)

[spoiler=What I did.](https://rmrk.net/proxy.php?request=http%3A%2F%2Fi109.photobucket.com%2Falbums%2Fn52%2Fdreamslayer7%2Fsavefile2_zps84e921e0.png&hash=b0e2f18c9d36c43175fb15470049cedc5f465da7) (http://s109.photobucket.com/user/dreamslayer7/media/savefile2_zps84e921e0.png.html)[/spoiler]

[spoiler=This one doesn't want to work.](https://rmrk.net/proxy.php?request=http%3A%2F%2Fi109.photobucket.com%2Falbums%2Fn52%2Fdreamslayer7%2Fsavefile1_zps41b053e4.jpg&hash=47635a607efcedd81ee3f9122f4f20b127c0498e) (http://s109.photobucket.com/user/dreamslayer7/media/savefile1_zps41b053e4.jpg.html)[/spoiler]




also i kno it looks like crap atm i havent finishd the skins .___.'
Title: Re: (RMVXA) Save file windowskin
Post by: modern algebra on June 14, 2013, 10:13:40 PM
Well, try pasting the following script into its own slot below Materials but above Main:


class Scene_Load
  def create_help_window(*args)
    super(*args)
    @help_window.windowskin = Cache.system("Window")
  end
end


Change Window to the name of your desired windowskin.
Title: Re: (RMVXA) Save file windowskin
Post by: &&&&&&&&&&&&& on June 14, 2013, 11:12:19 PM
Thank you.