Game Development Community

How do you make exe files?

by Peter Ma · in General Discussion · 06/18/2004 (10:08 pm) · 5 replies

Without having F10 and F11 under it...

when you make a game for your friend to test, you don't want them to have the whole thing to mess around with -/

#1
06/18/2004 (10:51 pm)
Simple... remove the key bindings that make f10 and f11 work. :)
#2
06/19/2004 (10:22 am)
How do I do that?
#3
06/19/2004 (11:00 am)
Try doing a full text search, using Textpad or another program, in all the .cs files, for the strings "f10" or "f11". You should find some calls to the bind method; comment them out and the editors will stop popping up.
#4
06/19/2004 (10:12 pm)
But can you completely remove them?

like when you go into counter strike, you don't have option to unlock or edit any levels...
#5
06/20/2004 (10:24 am)
You can eradicate the editors pretty thoroughly - what I described is the first step. Check out the editor directory in example/common for further areas to remove.

It doesn't really matter that much because even if the clients change their levels around completely, the server is still authoritative, so the client will only have messed themselves up.

(Actually, in counterstrike, you can easily use Valve's tools and replace your map files. So the same "flaw" exists, it's just that it's not as integrated as Torque.)