Linux, ctrl+3 = ESC

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
Comments
10
i think u must change the key

i have the same problem but u can learn it quick :)
FinlandTiikeri ?
Distro?

You might have a keyboard Shortcut bind with ctrl+3=ESC, so check the Keyboard shortcuts section.
dont use crouch and weaponswitch to weaponbank 3 togehter!
When I had a similiar problem, I managed to find info on teh www.google.lv/linux , that there is an option to remap keys (to change keyboard layout and behaviour of needed keys), dunno how and dunno where -,-

Or maybe I remember not correctly :X
For this particular issue i've rebound my "weaponbank 3" key to MOUSE4, and guess what? It's the only key I use now for switching to smg (much nicer than pressing 3) - even on windows
Just recently ran into the same problem, worked around it by remapping the ALT key to the CTRL key and vice versa.

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.
nice idea. Thx <3 i'll try that script
Parent
Back to top