- Joined
- Feb 9, 2019
- Messages
- 14
- Reaction score
- 2
- First Language
- Italian
- Primarily Uses
- RMMZ
I'using RPGMaker MZ, and I'm wondering how to remove the Shutdown option. Do I need Visustella's Core Engine?
I need to remove it because I want to publish my game on NewgroundsIf by "shutdown option" you mean a way to exit the game without clicking on the window's close (X) button, then MZ doesn't have that. One of your plugins added that in.
this.addCommand("Shutdown", "shutdown");
I solved it, but thanks. How? I used Visustella core engine, and deleted the Game End option in the title command list.Like I said, MZ doesn't have a shutdown option. It was added by one of your plugins. You'll have to find out which one did, see if the option can be disabled (it probably can't) or remove it if it can't be disabled.
To find out which plugin added the shutdown option, you'll need to search for "shutdown" in each plugin. The fastest way to do that is to use a text editor that supports searching through folders. For example, Notepad++ (Windows only) or Visual Studio Code (Windows, macOS, Linux).
I personally recommend Visual Studio Code.
For Notepad++ you'll need to use the "Find in Files" option and tell Notepad++ which folder you want to search.
For Visual Studio Code you'll need to open the folder with Visual Studio Code. You can do that from Visual Studio Code itself, or use the File Explorer, right click on the folder, and select "Open with Code". After that, you only need to search (there's a search icon on the right side of the window).
The folder you want to search is /js/plugins
To remove the shutdown option, you'll be looking for a line that says:
or similar. Simply delete that line. Make sure you delete the line that says "addCommand", and not another one that might say: "exitText = 'Shutdown';" or similar.Code:this.addCommand("Shutdown", "shutdown");
Also, pay attention to the Terms of Use for the plugin. Some plugins do not allow modifications. If that's the case with your plugin, you'll need to ask the plugin dev for permission, or write a plugin that specifically removes the option (but only as a last resort).
This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.