Tekken 7 iW Shining Wizzard script

Ask gaming related questions (AHK v1.1 and older)
blebicus
Posts: 1
Joined: 06 Feb 2023, 10:27

Tekken 7 iW Shining Wizzard script

Post by blebicus » 06 Feb 2023, 10:37

Hi guys, been working on my script for instant shining wizzard but for some reason the move isn`t executing instantly. I tried changing sleep timers and etc but it seems to not work. I am using a joystick pad so my inputs are joy 5 and joy 6 for left and right side respectfuly. The command goes trough with 3 forwards and a throw on the last forwad but I cant pinpoint the exact spot where I need to fix the code in the script. Help would be appreciated! :D

Here is my Script;

Code: Select all

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

;Default key bindings on Tekken 7 keyboard settings
;w - up
;s - down
;a - left
;d - right

;i - left punch
;u - right punch
;k - left kick
;j - right kick

;Default settings for pad users
;$joy5 - L1
;$joy6 - R1
;$joy7 - L2
;$joy8 - R2

;Leftside
$joy5::
{
send, {D down}
sleep 1
send, {D up}
sleep 1
send, {D down}
sleep 1
send, {D up}
sleep 1
send, {D down}
send, {U down}
send, {K down}
sleep 1
send, {D up}
send, {U up}
send, {K up}
sleep 1
}
Return


;Rightside
$joy6::
{
send, {A down}
sleep 1
send, {A up}
sleep 1
send, {A down}
sleep 1
send, {A up}
sleep 1
send, {A down}
send, {U down}
send, {K down}
sleep 1
send, {A up}
send, {U up}
send, {K up}
sleep 1
}
Return
[Mod edit: [code][/code] tags added.]

off
Posts: 176
Joined: 18 Nov 2022, 21:54

Re: Tekken 7 iW Shining Wizzard script

Post by off » 09 Feb 2023, 21:50

Hello welcome to AutoHotkey Forum!

First of all, test if the game you play is detecting input from a simple script
ex:

Code: Select all

^p:: ; ctrl+p
send, d
return
if the script doesnt work in your game, try to use in notepad and see if it works

also you use capital key in your script,
for example Send, D will send Shift+d

Post Reply

Return to “Gaming Help (v1)”