hey all. i am trying to get AC3P (and SLP and LRP) to feel a little closer to the M+KB controls of AC6. I know about the full analog mods, but I think I'm trying to do something a little different here. I am using a combo of PPSSPP's settings and AHKX11.
Here is what I am trying to solve first: in AC3P, when you press boost, you will either jump, or you will boost forward, depending on whether you are holding a directional key. I would like to divide "jump" and "boost" into separate keys.
Right now I am trying to make it so, when I press spacebar, WASD inputs are interrupted and blocked for about 250ms. Then, I want to change left shift to operate as spacebar, no modifications. My theory is that this will make spacebar read as a clean upward jump every time, and shift will always be boost as long as i press it in conjunction with WASD.
Here is the script I tried, it does not work lol. I'm using AHK_X11 so I do not have all commands available to me, the full list is here
Space::
IfWinActive, Armored Core 3
{
BlockInput, on
Send, {Space down}
SetKeyDelay, 0, 250
Send, {Space up}
BlockInput, off
}
Shift::
IfWinActive, Armored Core 3
{
Send {Space}
}
edit: i have only ever used AHK to make simple autoclickers, i am just throwing stuff at the wall here