Blazblue mirror command Topic is solved

Ask gaming related questions (AHK v1.1 and older)
vigaristaa12

Blazblue mirror command  Topic is solved

05 Mar 2016, 20:09

So, I've been trying to get both controls in BBCPEX (in P1 and P2) to use the same keys. I use ZXCV and arrow keys and so far I was able to replicate jumping (up=w) with a very simple

Code: Select all

*Up:: 
Send {Up}
Send {w}
return
However, there is an issue which I do not know is possible to circumvent. There's a grotesque delay between keypresses and sometimes it doesn't even register, which makes it unplayable.
Anyone knows if that is an app specific issue or if there's a way to code around it?
Thanks in Advance

PS: horrible coder, this took like 15 minutes of research, however I am not good at coding hotkeys at all :P
floowsnaake9k

Re: Blazblue mirror command

06 Mar 2016, 06:06

have you tried adding sleep?

Code: Select all

IF NOT A_IsAdmin
{
   Run *RunAs "%A_ScriptFullPath%"
   ExitApp
}

#SingleInstance Force

*Up:: 
Sleep, 200
Send {Up}
Sleep, 200
Send {w}
Sleep, 200
return
vigaristaa12

Re: Blazblue mirror command

06 Mar 2016, 12:21

floowsnaake9k wrote:have you tried adding sleep?

Code: Select all

IF NOT A_IsAdmin
{
   Run *RunAs "%A_ScriptFullPath%"
   ExitApp
}

#SingleInstance Force

*Up:: 
Sleep, 200
Send {Up}
Sleep, 200
Send {w}
Sleep, 200
return
The code you sent makes Up arrow completely non-functional in-game, the script does work in other browsers however not in the game.
I tried just the Up:: part of the code however it still didn't register keypresses.

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 39 guests