[RMMV-MZ] Custom Script Anywhere [v1.11]
About
This plugin allows you to run script anywhere.
Setup the parameter list however desired.
Basically this allows to alias or overwrite any existing function just set it up with the parameters.
Pre Script will run at the beginning of the function before the original functions code.
Post Script will run at the end of the function after the original functions code.
Debug option to print the entire function to console so you can see what parameters it takes as well as what the function itself normally does.
Overwrite option will ignore the primary function.
Since this code works as code that already includes a "return" statment
Instead set the variable "r" to anything that will be returned.
Example:
when normally you would do return true;
instead put r = true;