Selling Macro
Katana combo for Tarka Ji
Discord: ThePurge#6738
Katana combo for Tarka Ji
|
|
Discord: ThePurge#6738
|
|
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Event ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#IfWinActive, Naraka
LCtrl::
DashUppercut()
DashUppercut()
{
Send, {a down}
Send, {LShift down}
Sleep, 200
Send, {c down}
Sleep, 100
Click, Right
Send, {c up}
Sleep, 25
Send, {a up}
Send, {LShift up}
}
Quote:
Here you go bois. After the first uppercut, just tap Left Ctrl each time your uppercut lands. But uppercut manually after each 3rd uppercut, so you restore energy. Compile as exe and run as admin to be sure it works properly.Code:#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Event ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #IfWinActive, Naraka LCtrl:: DashUppercut() DashUppercut() { Send, {a down} Send, {LShift down} Sleep, 200 Send, {c down} Sleep, 100 Click, Right Send, {c up} Sleep, 25 Send, {a up} Send, {LShift up} }