Street Fighter V

Street Fighter V

25 ratings
How to Costumize Your Keyboard Inputs Using AutoHotKey.
By Akukin Burd~
How to rebind your keys on SFV using AutoHotKey.
   
Award
Favorite
Favorited
Unfavorite
How to.
Autohotkey works for SFV.

1) Install autohotkey;

2) Create a file with a name "SFV autohotkey.ahk".

3) Open it with notepad and write the script. Just copy and paste this:

u::g

i::h

o::j

p::k

j::b

k::n

l::m

SPACE::,

Leave movement keys (W A S D) the same, just change left ones.

4) Right-click it and select ''Run as Administrator'' on the created script

5) Enjoy the game

Check the Screenshot to see how the script should look like before saving it.
28 Comments
wizard master結城晶子リ Aug 27, 2017 @ 6:56am 
but i dont want those keys i want my own keyboard settings i wan tit se tup like sf4 default control are
La creatura Jan 9, 2017 @ 4:43pm 
@Burd~ Can't see that option (windows 7 Pro.)
Akukin Burd~  [author] Jan 9, 2017 @ 4:24pm 
@Hsien-K.O Like this: http://i.imgur.com/J4k8XxC.png
Right-click the ".ahk" file and click on "Run as administrator".
La creatura Jan 9, 2017 @ 12:50pm 
4) Right-click it and select ''Run as Administrator'' on the created script :warband::sfvto::fraud:

How the hell do I run a script as an administrator?
76561198138999367 Jul 25, 2016 @ 8:40am 
Use this instead if you want to use Numpad for playing.
I use TFGH instead of WASD so you can omit the directional input part.

456- punches
123 - kick
0 - PPP
. - KKK
7 - throw
8 - vskill
9 - vtrigger

Copy and past everything after this line.

#IfWinActive StreetFighterV
t::w ; Up
g::s ; Down
f::a ; Left
h::d ; Right

Numpad4::g ; LP
Numpad5::h ; MP
Numpad6::j ; HP
Numpad0::k ; LP+MP+HP

Numpad1::b ; LK
Numpad2::n ; MK
Numpad3::m ; HK
NumpadDot::, ; LK+MK+HK

Numpad7:: ; Throw
SendInput {g down}{b down}
KeyWait, Numpad7
SendInput {g up}{b up}
Return

Numpad8:: ; V-Skill
SendInput {h down}{n down}
KeyWait, Numpad8
SendInput {h up}{n up}
Return

Numpad9:: ; V-Trigger
SendInput {j down}{m down}
KeyWait, Numpad9
SendInput {j up}{m up}
Return

Return
Mickey Feb 22, 2016 @ 10:52pm 
for some reason SendEvent didnt work for me
Mickey Feb 22, 2016 @ 10:51pm 
i did find a ghetto way of getting throw and vskill inputs to work so you can rebind grab and such to a defined key

NumpadAdd::
Send, {G down}
Send, {B down}
sleep, 200
Send, {G up}
Send, {B up}
return

This would be binding G and B to Numpad's plus sign. working great for me. you have to simulate a button down press and up press, after my many trials without the time seperation, with relatively human timing. of course lowering the time could be considered cheating i suppose?

make sure to add return after each key you do this for
robhal20 Feb 21, 2016 @ 8:58pm 
Then you should say so in the first place.
Gregg2G Feb 21, 2016 @ 8:18pm 
Saying it's "no use" because it doesn't work in one specific instance.. I've never ever used the steam overlay for chat or anything, I have three monitors. Works fine for me! :golden:
robhal20 Feb 21, 2016 @ 7:16am 
The #IfWinActive StreetFighterV is no use, we still have to disable AutoHotkey when we are going to use Steam chat.