My keyboard have broken tilde key. Is there any way to change console key?
I think you can change the keybinding, from the console ... >_<
EDIT:
if your on windows try going into the start menu and typing "osk" then press enter. It'll bring up a virtual keyboard.
local toggled = 0
function keypress(keychar,keynum,modifier,event)
if keynum==47 then
if toggled == 0 then
toggled = 1
else
toggled = 0
end
tpt.set_console(toggled) end
end
tpt.register_keypress(keypress)
Scripts don't run inside the console, so toggling off is impossible. But the ESC key always closes it, lets just hope that key doesn't break.