Game Development Community

Turning off the map editor and GUI editor.

by Jeffrey S. · in General Discussion · 08/07/2008 (12:48 pm) · 6 replies

How do you turn off the map editor so when you press F11, it does nothing, same for GUI editor?

#1
08/07/2008 (12:57 pm)
In your game/main.cs there is a line like,
$userMods = "tools;" @ $defaultGame;

Delete tools there. At least this is one way to do it.
#2
08/08/2008 (12:08 am)
Which version of torque you are using?
#3
08/08/2008 (7:04 pm)
I.m using the newest version. 1.5.2
#4
08/09/2008 (12:17 am)
Ok then...

in the main.cs in the root directory where the game exe is located, around line 41 change this

$userMods = "creator;" @ $defaultGame;

to

$userMods = $defaultGame;

and remove or rename the creator folder in root directory, according to your convenience.

:)
#5
08/09/2008 (12:31 am)
Oops, my bad.
#6
08/12/2008 (5:55 pm)
Thank you