RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Remove Main Menu commands

Started by nevfx, January 18, 2007, 05:47:21 PM

0 Members and 1 Guest are viewing this topic.

nevfx

I wondered how do you remove commands from the main menu, like save. I don't need to know how to add them, but it would be helpful.

-nevfx

Chiakumu

Event: Disallow Saving

That might help although, I don't know.
Kinsei kazoku no mottoo .

Seigi no mae no haamonii
heiwa no mae no barannsu
saigo no ha no mae no junjo ha kudaru

Translation:

Kinsei Family Motto

Harmony before Justice,
Balance before Peace,
Order before the last leaf falls

nevfx

I know, that, yeah. I want to know how to remove it from the menu.

GilgameshRO

This would require editing the game's scripts.

Synthesize

Rpg Maker XP:

Scene_Menu:
    s1 = $data_system.words.item
    s2 = $data_system.words.skill
    s3 = $data_system.words.equip
    s4 = "Status"
    s5 = "Save"
    s6 = "End Game"


If you simply want to rename a command, choose the command and change the name. If you want to add a new command you have to add a new command slot and the code of what happens when the command is selected.

nevfx

^^Thanks for that advice. But I found out anyway, so I'll lock the topic.