Sharing this AutoHotkey script I use for playing the game. As assassin Lona, I use keys A and S for attacks and like to hold them down to attack multiple times as quickly as possible until letting the keys go.
```
$A::
While ( GetKeyState( "A", "P" ) )
{
Send, {A Down}
Sleep, 50
Send, {A Up}
Sleep, 50
}
Return
$S::
While ( GetKeyState( "S", "P" ) )
{
Send, {S Down}
Sleep, 50
Send, {S Up}
Sleep, 50
}
Return
```