Skip to content

Instantly share code, notes, and snippets.

@KinoAR
Created April 23, 2017 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KinoAR/bb81f3e960eb174fb2893860d4e03476 to your computer and use it in GitHub Desktop.
Save KinoAR/bb81f3e960eb174fb2893860d4e03476 to your computer and use it in GitHub Desktop.
Information concerning the script calls for the exp modifier plugin.
//=============================================================================
// Introduction
//=============================================================================
*
* This plugin modify exp gain in your game until turned off via script call.
* This can be useful if you want to make a hard mode playthrough of a game and
* want to adjust the exp gain to add a challenge to your players.
*
* Place this script below other scripts for maximum effectiveness.
//=============================================================================
// Script Calls
//=============================================================================
*
* $gameSystem.disableExpGain();
* This script call disables exp gain until turned off.
*
* $gameSystem.enableExpGain();
* This script call enables exp gain and turns off disabling exp gain.
*
* $gameSystem.setExpModifier(number)
* This script call changes the exp modifier.
*
* Examples:
* No Exp Gain: $gameSystem.setExpModifier(0.0);
*
* 300% Exp Gain: $gameSystem.setExpModifier(3.0);
*
* $gameSystem.resetExpModifier();
* Resets the exp modifier back to the default.
*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment