//============================================================================= // Kloe's Seagull Essentials // KloeEssentials.js // Version: 1.0 // Date Created: 17 March, 2016 // Scripted By: Kloe //============================================================================= var Imported = Imported || {}; Imported.Kloe_Essentials = 1.0; //============================================================================= /*: * * @plugindesc KloeVersion 1.0 --> This is Kloe's Super Seagull Essentials Plugin!! Yaaaaaaaaaaay! * * @author Kloe "Super" Seagull * * @param Group Jump * @desc When jumping via eventing, will followers NOT group to you when you jump? 1 = Yes, 0 = No * @default 1 * * * @help * * Hiya! Do you need help? Heeeeeeeeeeeeeeeeeeeeeeeeeeeelp! * It is meant to be really simple, but if you need clarification, check the parameters section of the help file! * There are also some plugin commands you might wanna use, some can be done with script calls but this makes it * easier to remember, I have set up plugin commands for some things; check the Plugin Command section for more info! * This is meant to be an easy-to-use plugin not a fancy awesome one, so keep that in mind! * If you need any help, ask at my plugin thread at -> http://forums.rpgmakerweb.com/index.php?/topic/ * If you need medical help just scream "HEEEEEEEEEEEEELP" or call a doctor! *-------------------------------------------------------------------------------------------------------------------- * -PLUGIN PARAMETER GUIDE- *-------------------------------------------------------------------------------------------------------------------- * Group Jump - When you jump, all your followers jump with you in a group BUT what if you really don't want that * and would rather that the player would jump alone and the rest wouldn't follow! I use this with * follower control plugins, to make cool jumpy party things! * * *-------------------------------------------------------------------------------------------------------------------- * -PLUGIN COMMAND GUIDE- *-------------------------------------------------------------------------------------------------------------------- * LoadSaveMenu - Opens the load menu (the one that is used when you hit "Continue" on the title screen) * * *-------------------------------------------------------------------------------------------------------------------- * * Have fun RPG Making! -Kloe (The Plugin Making Seagull) * */ var parameters = PluginManager.parameters('KloeEssentials'); var KloeJump = Number(parameters['Group Jump'] || 1); if (KloeJump == 1) { Game_Followers.prototype.jumpAll = function() { if ($gamePlayer.isJumping()) { } }; } else { } var _GameInterpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand; Game_Interpreter.prototype.pluginCommand = function(command, args) { _GameInterpreter_pluginCommand.call(this, command, args); if(command == "LoadSaveMenu") { SceneManager.push(Scene_Load); } };