Removing Menu Items 2.5
Posted: October 1st, 2010, 9:56 pm
So you want to publish your game. But you don't want people to edit your map or the button called LOAD MAP on there etc
First step: Make a new copy of your folder first.
Now lets get started
Go to this location
\2.5\data\lang\en
After that open menu.cfg
Search that
Now if you want to delete it just delete the line
so it would go from this
to this
There you go
First step: Make a new copy of your folder first.
Now lets get started
Go to this location
\2.5\data\lang\en
After that open menu.cfg
Code: Select all
guibutton "Toggle Editmode (e)" "edittoggle"
Now if you want to delete it just delete the line
so it would go from this
Code: Select all
guilist [
guibutton "Toggle Editmode (e)" "edittoggle"
guibutton "Load Map" "showgui maps; MODE = (getmode); mode (getmode); initmapgui"
guibutton "Load Custom Map" "showgui loadmap"
guibutton "Multiplayer" "showgui multiplayer"
guibutton "Help" "showgui help"
guibar
guibutton "Options" "showgui options"
guibutton "Jukebox" "showgui jukebox"
guibutton "Change Skill Level" "showgui skilllvl"
guibutton "About" "showgui authors"
guibutton "Exit The Game" quit exit
]
]
]
Code: Select all
guilist [
guibutton "Load Map" "showgui maps; MODE = (getmode); mode (getmode); initmapgui"
guibutton "Load Custom Map" "showgui loadmap"
guibutton "Multiplayer" "showgui multiplayer"
guibutton "Help" "showgui help"
guibar
guibutton "Options" "showgui options"
guibutton "Jukebox" "showgui jukebox"
guibutton "Change Skill Level" "showgui skilllvl"
guibutton "About" "showgui authors"
guibutton "Exit The Game" quit exit
]
]
]