key mapping

Is it possible to map keys ?

For instance with an AZERTY keyboard, i'd to have A<>Q and Z<>W

Thanks

5,740 views 2 replies
Reply #1 Top

I've heard custom key mapping is coming. In the mean time I've been using Autohotkey to setup some basic remappings. This script should do what you like.

 

#SingleInstance force

;;Only activate these hotkeys within Offworld
#IfWinActive ahk_class UnityWndClass

$a::Send, q
$q::Send, a

$z::Send, w
$w::Send, z

#IfWinActive