Hey I want to do a massive plugin and I want to make some stuff non-enabled if the peoples make them non-enabled! but I'm unsure if I can do that.
like this would be something like this :
if(Zephir.params.EnableTitleScreen){
Scene_TitleScreen.prototype.create = function() {
// do some stuff here...
};
}
so in simple I kinda want to stop the overwriting of some class if the options is not enabled
(I know I could do in separate plugin but I do it in one plugin)
like this would be something like this :
if(Zephir.params.EnableTitleScreen){
Scene_TitleScreen.prototype.create = function() {
// do some stuff here...
};
}
so in simple I kinda want to stop the overwriting of some class if the options is not enabled
(I know I could do in separate plugin but I do it in one plugin)
Last edited by a moderator:

