Skip to content

Instantly share code, notes, and snippets.

@sugoidogo
Last active October 30, 2025 08:40
Show Gist options
  • Select an option

  • Save sugoidogo/958f026e1ef0f4f7295e386476570369 to your computer and use it in GitHub Desktop.

Select an option

Save sugoidogo/958f026e1ef0f4f7295e386476570369 to your computer and use it in GitHub Desktop.
RPGMaker MZ plugin to increase the size of the Options window
/*:
* @target MZ
* @plugindesc Increases the size of the Options window
* @author SugoiDogo
* @license LGPL-3.0-or-later (https://www.gnu.org/licenses/lgpl-3.0.en.html)
* @help Sugoi_LargerOptionsWindow.js
*
* Increases the size of the Options window
*/
{
const initialize = Window_Options.prototype.initialize
Window_Options.prototype.initialize = function (rect) {
initialize.call(this, new Rectangle(0, 0, 700, 600))
}
Window_Options.prototype.statusWidth = function () {
return 300
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment