Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Right-click the ".ahk" file and click on "Run as administrator".
How the hell do I run a script as an administrator?
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
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