Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

Removing Menu Items 2.5

Learn more on how to use Sandbox, or submit your own tutorials or resources.
Post Reply
daltonds1
Member
Member
Posts: 368
Joined: September 13th, 2010, 12:26 am
Name: Dalton
IRC Username: Daltonds1
Location: Tomball, Texas

Removing Menu Items 2.5

Post by daltonds1 »

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

Code: Select all

            guibutton "Toggle Editmode (e)"    "edittoggle"
Search that

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
        ]
    ]
]
to this

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
		]
	]
]
There you go
User avatar
goldstylez
Member
Member
Posts: 35
Joined: May 22nd, 2010, 11:40 am
Name: goldstylez
IRC Username: goldstylez

Re: Removing Menu Items 2.5

Post by goldstylez »

i gonna try;)
come to the dark side
we have cookies=3
User avatar
klimyriad
Support Team
Support Team
Posts: 969
Joined: December 23rd, 2009, 1:43 pm
Name: liam
Contact:

Re: Removing Menu Items 2.5

Post by klimyriad »

It does not work you also need to go into defaults and remove it there too.
Firstspace the attack Progress. Image
Maps= Image finishing the town of hisal map.
Models and textures Image Just started finding these.
Menus, script's and other stuff. Image
daltonds1
Member
Member
Posts: 368
Joined: September 13th, 2010, 12:26 am
Name: Dalton
IRC Username: Daltonds1
Location: Tomball, Texas

Re: Removing Menu Items 2.5

Post by daltonds1 »

Works PERFECTLY fine for me. But this is only removing from ENGLISH Menu
User avatar
damiandj
Member
Member
Posts: 159
Joined: October 10th, 2009, 6:50 am
Name: Damian
Location: Selva di Val Gardena , South Tyrol, Italy, Europe, Earth

Re: Removing Menu Items 2.5

Post by damiandj »

and if I open the console with "\" and write "edittoggle" ? :D
RPG PROJECT - "The Golden Coin" (TGC) - http://www.thegoldencoin.do.am - DAMIAN
chocolatepie33
Support Team
Support Team
Posts: 2458
Joined: April 27th, 2010, 5:31 pm
IRC Username: CP

Re: Removing Menu Items 2.5

Post by chocolatepie33 »

there's a file with all the commands like that in it, or at least there should be, just remove it from there...

Good to see you're still around.
Julius wrote:Contribute to http://www.opengameart.org NOW!
Save the wiki!
User avatar
klimyriad
Support Team
Support Team
Posts: 969
Joined: December 23rd, 2009, 1:43 pm
Name: liam
Contact:

Re: Removing Menu Items 2.5

Post by klimyriad »

Cp damiandj knows that he just saying if you type /edittoggle you can still get edit mode.
Firstspace the attack Progress. Image
Maps= Image finishing the town of hisal map.
Models and textures Image Just started finding these.
Menus, script's and other stuff. Image
chocolatepie33
Support Team
Support Team
Posts: 2458
Joined: April 27th, 2010, 5:31 pm
IRC Username: CP

Re: Removing Menu Items 2.5

Post by chocolatepie33 »

unless you delete the command, then it'll say "unknown command: edittoggle", or something along those lines. But yeah, I see your point.
Julius wrote:Contribute to http://www.opengameart.org NOW!
Save the wiki!
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Re: Removing Menu Items 2.5

Post by Leo_V117 »

Then you override the edittoggle function alltogether.
Post Reply