Skip to content

Instantly share code, notes, and snippets.

View stevenwithaph's full-sized avatar

Steven Adams stevenwithaph

View GitHub Profile
//=============================================================================
// RPG Maker MZ - Drop Item Double Text
//=============================================================================
/*:
* @target MZ
* @plugindesc Change the obtain item text when a party member has the double
* item drop
* @author Steven Adams
*
@stevenwithaph
stevenwithaph / QuickSave.js
Created August 4, 2021 23:46
Allow quick saving in rpg maker mv from the menu.
(() => {
var quickSaveId = 1;
Window_SavefileList.prototype.drawTitle = function(savefileId, x, y) {
if (savefileId === 0) {
this.drawText(TextManager.autosave, x, y, 180);
} else if (savefileId === 1) {
this.drawText('Quick Save', x, y, 180);
}
else {
@stevenwithaph
stevenwithaph / CustomHero.js
Last active March 31, 2021 03:52
First member of the party only shows on map
/*:
* @target MZ
* @plugindesc Custom Hero
* @author Steven
*
* @help Custom Hero.js
*
*
*/