How to script this Tekken commands?

Ask gaming related questions (AHK v1.1 and older)
thisizmonster
Posts: 3
Joined: 01 Aug 2017, 06:02
Contact:

How to script this Tekken commands?

01 Aug 2017, 06:10

Let's say I'm trying script below action.

If I hold down E key {
Send hold down A key 50 ms
Send hold down D key until I release E key
} if release E key {
Cancel all above actions immediately
}

For example Jin have movement back, forward, attack button. On keyboard sometimes I miss back, forward part. So above script trying do it. For do back, forward, triangle you either can release forward before triangle or hold on it. Both way works. If above script release forward then send E it only works in case of above combo. But I want it universal. So I'm only scripting back, forward buttons, abusing you can keep hold on forward.

However while I holding down on E button, when script working (sending key sequences), if opponent block or do something, I have to immediately cancel all sleeps, delays, key sequences and must do others stuffs like blocking.
neomulemi6
Posts: 216
Joined: 30 Jun 2016, 06:01

Re: How to script this Tekken commands?

01 Aug 2017, 07:08

Hallo,
try:

Code: Select all

$e::
Send {a down}{d down}
Sleep 50
Send {a up}
KeyWait, e
Send {d up}
Return
User avatar
thenasos
Posts: 79
Joined: 10 Nov 2015, 10:00

Re: How to script this Tekken commands?

01 Aug 2017, 07:21

Or this

Code: Select all

E::
while(getKeyState("E","P")){
    Send {a down}
	while(getKeyState("E","P")){
		sleep 50
		while(getKeyState("E","P")){
			send {a up}
			while(getKeyState("E","P")){
				Send d
				return
}}}}
return
But in honesty, 30 minutes in practice mode, should help with the accuracy of fingers. :)
Hit me up, if want some practice matches.
Shrek is love...
thisizmonster
Posts: 3
Joined: 01 Aug 2017, 06:02
Contact:

Re: How to script this Tekken commands?

01 Aug 2017, 08:32

neomulemi6 wrote:Hallo,
try:

Code: Select all

$e::
Send {a down}{d down}
Sleep 50
Send {a up}
KeyWait, e
Send {d up}
Return
Almost. But it's not holding D button.
neomulemi6
Posts: 216
Joined: 30 Jun 2016, 06:01

Re: How to script this Tekken commands?

01 Aug 2017, 10:28

Hallo,
try:

Code: Select all

$e::
Send {a down}{d down}
Sleep 50
Send {a up}
Return

e up::Send {d up}

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 76 guests