Skip to content

Instantly share code, notes, and snippets.

@markhansaven
markhansaven / Misc_DeactivateZspeedup.js
Created January 15, 2016 16:59
Miscellaneous RPG Maker MV script - deactivate Z speeding up events
/*:
* @plugindesc Deactivates fast forward on events on a map when Z key is held down.
*
* @author NA
*
*/
Scene_Map.prototype.isFastForward = function() {
return false;
//($gameMap.isEventRunning() && !SceneManager.isSceneChanging() &&
@markhansaven
markhansaven / AS_InputSettings.js
Created January 13, 2016 16:26
Simple input settings script for rpg maker mv.
/*:
* @plugindesc WASD Movement, Disable F keys and Disable mouse/touch input.
*
* @author Astra Cat
*
* @param WASD Control
* @desc Use WASD to move character?
* @default false
* @param Disable F2 F3 and F4
* @desc Disable F2, F3, and F4 keys?
@markhansaven
markhansaven / AS_SimpleMouseScript.js
Last active February 26, 2017 17:09
A simple rpg maker mv mouse script for a couple globals and a custom cursor.
/*:
* @plugindesc Creates MouseX, MouseY, MouseXGrid, MouseYGrid and Custom Cursor. Also hides system cursor.
*
* @author Astra Cat
*
* @param MouseX and Y Updating
* @desc By default this is off in RPG Maker MV, needed for MouseX and MouseY global variables.
* @default true
* @param Custom Cursor Filename
* @desc Mouse Cursor Filename (no extension please, in /Pictures folder). Default is "cursor".
/*:
* @plugindesc WASD Movement, Disable F keys and Disable mouse/touch input.
*
* @author Astra Cat
*
* @param WASD Control
* @desc Use WASD to move character?
* @default false
* @param Disable F2 F3 and F4
* @desc Disable F2, F3, and F4 keys?