Linux, ctrl+3 = ESC
•
16 Oct 2007, 11:05
•
Journals
I installed et on Linux and i found this annoying bug like when i press ctrl + weaponbank3 in the same time it's opening menu like i'd pressed esc. (i use ctrl for crouch)
Don't tell me to change the crouch bind cause i won't.
If there is anyone who can give a suggestion i'd appreciate.
<3
EDIT: googled already -> no achievement
Don't tell me to change the crouch bind cause i won't.
If there is anyone who can give a suggestion i'd appreciate.
<3
EDIT: googled already -> no achievement
i have the same problem but u can learn it quick :)
You might have a keyboard Shortcut bind with ctrl+3=ESC, so check the Keyboard shortcuts section.
Or maybe I remember not correctly :X
http://ubuntuforums.org/showthread.php?t=572845
I made these little scripts:
to start ET:
#!/bin/sh
/home/USERNAME/.etwolf/et-start && /home/USERNAME/.etwolf/et-sdl-sound-etpro && /home/USERNAMEl/.etwolf/et-stop
et-start:
#!/bin/sh
xmodmap /home/USERNAME/.etwolf/.xmodmap-et-start
et-stop:
#!/bin/sh
xmodmap /home/USERNAME/.etwolf/.xmodmap-et-stop
Xmodmappings:
.xmodmap-et-start:
remove Control = Control_L
remove Mod1 = Alt_L
keycode 0x25 = Alt_L
keycode 0x40 = Control_L
add Control = Control_L
add Mod1 = Alt_L 0x007D
.xmodmap-et-stop:
remove Control = Control_L
remove Mod1 = Alt_L
keycode 0x40 = Alt_L
keycode 0x25 = Control_L
add Control = Control_L
add Mod1 = Alt_L 0x007D
And then don't forget to change your binds in your autoexec.
I'm using US international (105) keyboard layout, you might have to change the keycodes if you are using a different keyboard layout. I got the keycodes with xkeycaps. Sudo apt-get install xkeycaps in a terminal then run xkeycaps to check your keycodes.