How can I unlock the console in demos?

I can get the console to show up but I can't interact with it. Help! :(

Comments

  • You need a script. I forget what script.
  • The easiest, and ugliest way is to run the game in a window and prior to playing a demo enter the console command: enableWinConsole(1);
  • The variable that stops you from using keys during recording playback is $globalActionMapOnly
    Make sure this is set to false, and you won't have a problem using the console.

    If you want to add a key to switch it on and off, you can use something like: GlobalActionMap.bindCmd(keyboard, "ctrl minus", "", "$globalActionMapOnly = !$globalActionMapOnly;");
  • Thanks pals! Keep up the good work. :)
Sign In or Register to comment.