How to change bindings NFS Unbound AHK (PC Map Mouse Zoom)
How to change bindings NFS Unbound with AHK PC Map Mouse Zoom. How to change bindings NEED FOR SPEED Unbound with AHK PC Map Mouse Zoom.
You can remap key bindings in NFS Unbound
1 Download AHK https://www.autohotkey.com/
2 Download remap file and start it
It will remap keys however you want
and even can make keys combinations
Remap file
n now opens collectibles tab
left mouse button now opens collectibles tab
WheelUp & WheelDown zoom the map
right mouse button now opens map
can remap them however you like
https://drive.google.com/file/d/1ThmVKikbIRwziGXPz8CpybSaq5leh8Vy/view?usp=sharing
# If you don't want to download file:
CoordMode, Mouse, Screen
CoordMode, ToolTip, Screen
#IfWinActive ahk_exe NeedForSpeedUnbound.exe
WheelUp:: ; wheel will zoom map
sleep 100
send {r down}
sleep 100
send {r up}
sleep 100
return ; WheelUp can't fire a second instance until the first returns.
WheelDown:: ; wheel will zoom map
sleep 100
send {f down}
sleep 100
send {f up}
sleep 100
return ; WheelUp can't fire a second instance until the first returns.
RButton::m ; right Mouse button now is m = map
x::e ; Makes the 'X' key send 'b' key
n:: ; n now opens collectibles tab
keyArray := ["m", "c", "c", "r"]
d = 100 ; delay in ms
sleep d
send {m down}
sleep d
sleep d
send {m up}
sleep d
sleep d
sleep d
sleep d
send {c down}
sleep d
sleep d
send {c up}
sleep d
sleep d
send {c down}
sleep d
send {c up}
return
LButton:: ; left mouse button now opens collectibles tab
keyArray := ["m", "c", "c", "r"]
d = 100 ; delay in ms
sleep d
send {m down}
sleep d
sleep d
send {m up}
sleep d
sleep d
sleep d
sleep d
send {c down}
sleep d
sleep d
send {c up}
sleep d
sleep d
send {c down}
sleep d
send {c up}
#IfWinActive ; This puts subsequent remappings and hotkeys in effect for all windows.