infinite bloom combo

🧩 Syntax:
#NoEnv  
SendMode Input 
SetWorkingDir %A_ScriptDir%
SetKeyDelay, 0, 60 
#SingleInstance ,force


3::               ;<<<---- press 3, this is hotkey just press it or change it to any key you want
blooming()
return


blooming()
{
;==== absolute divider cancel =========     
Send, {e Down}
sleep, 20
Send, {e up}
sleep, 400


;==== forward chase + blooming =========
Send, {w Down}{RButton Down}
sleep, 20
Send, {w up}{RButton up}
sleep, 20
Send, {Shift Down}{LButton Down}{RButton Down}
sleep, 120
Send, {Shift up}{LButton up}{RButton up}



;==== cyclone slash =========
sleep, 500      
Send, {LButton Down}
sleep, 100
Send, {LButton up}
sleep, 50


return
}

end::exitapp