swiftdeathsk
Member
to remove the Steps window from the main menu, delete lines
45-48 : wich are
77 : which is
88 : which is
And to remove the Playtime window, remove the following lines:
42-44: which are
76: Which is
87: which is
all these lines are found in Scene_menu in the RGSS editor.
just for your knowlege deleting these codes does not delete the windows from the game. it just deletes the calls for the windows when the computer makes the menu.
please note that these line numbers are before you delete the lines. (once you start deleting lines the numbers will change because you eliminated lines from the code)
45-48 : wich are
Code:
# Make steps window
@steps_window = Window_Steps.new
@steps_window.x = 0
@steps_window.y = 320
77 : which is
Code:
@steps_window.dispose
88 : which is
Code:
@steps_window.update
And to remove the Playtime window, remove the following lines:
42-44: which are
Code:
@playtime_window = Window_PlayTime.new
@playtime_window.x = 0
@playtime_window.y = 224
76: Which is
Code:
@playtime_window.dispose
87: which is
Code:
@playtime_window.update
all these lines are found in Scene_menu in the RGSS editor.
just for your knowlege deleting these codes does not delete the windows from the game. it just deletes the calls for the windows when the computer makes the menu.
please note that these line numbers are before you delete the lines. (once you start deleting lines the numbers will change because you eliminated lines from the code)