Granblue Fantasy: Relink

Granblue Fantasy: Relink

View Stats:
Daddy Kaneki Feb 18, 2024 @ 12:47am
Can someone check my autohotkey script for Id's attack spam inputs?
; Set E to repeatedly click MB5 while E is held down
*E::
Loop {
Click, Left, Down
Sleep, 25
Click, Left, Up
}
return

; Set Q to repeatedly click left mouse button while Q is held down
*Q::
Loop {
Click, Left, Down
Sleep, 25
Click, Left, Up
}
return


Is this going to work?
Last edited by Daddy Kaneki; Feb 18, 2024 @ 12:48am
< >
Showing 1-6 of 6 comments
RandomRev Feb 18, 2024 @ 2:31am 
Forgive my ignorance, but if you just wanna spam input, you can just set it on the steam controller layout. There's a option called "Hold to repeat(Turbo)"
Daddy Kaneki Feb 18, 2024 @ 2:48am 
Originally posted by RandomRev:
Forgive my ignorance, but if you just wanna spam input, you can just set it on the steam controller layout. There's a option called "Hold to repeat(Turbo)"
Can I tweak those settings with a keyboard though? Or is it controller only?
Bejo Feb 18, 2024 @ 2:53am 
Originally posted by 🌙Id🌙:
Can I tweak those settings with a keyboard though? Or is it controller only?
Unfortunately that is only for controller
Daddy Kaneki Feb 18, 2024 @ 3:35am 
Update: The script I posted in the OP didn't *really* work (it sort of did, but the key kept being held down even after I let it go.) Microsoft Copilot helped me write a successful version of the script and it works completely perfectly. I'm actually extremely impressed.

; Hold Q to simulate rapid Left Mouse Button clicks
$q::
While GetKeyState("q", "P") ; While Q is held down
{
Click ; Simulate a mouse click (Left Mouse Button)
Sleep 50 ; Adjust the delay between clicks (in milliseconds)
}
return

; Hold E to simulate rapid Thumb Mouse Button (MB5) clicks
$e::
While GetKeyState("e", "P") ; While E is held down
{
Click X1 ; Simulate a thumb mouse button click (MB5)
Sleep 50 ; Adjust the delay between clicks (in milliseconds)
}
return

Copilot made a small mistake: It initially was spamming right mouse button clicks rather than MB5 clicks, but when I informed the AI of its error, it rectified it without any issue. Kudos to Microsoft, you guys saved me so much headache figuring out how to write this script myself and fine-tuning it.
Last edited by Daddy Kaneki; Feb 18, 2024 @ 3:47am
Kriss Hietala Feb 18, 2024 @ 3:45am 
Originally posted by 🌙Id🌙:
Originally posted by RandomRev:
Forgive my ignorance, but if you just wanna spam input, you can just set it on the steam controller layout. There's a option called "Hold to repeat(Turbo)"
Can I tweak those settings with a keyboard though? Or is it controller only?
you can get it to work with keyboard input too.
Daddy Kaneki Feb 18, 2024 @ 3:46am 
Originally posted by Kriss Hietala:
Originally posted by 🌙Id🌙:
Can I tweak those settings with a keyboard though? Or is it controller only?
you can get it to work with keyboard input too.
Microsoft Copilot flawlessly wrote the script for me and it works perfectly in-game, although I'm curious about this actually. If Steam Input worked with keyboard it would be far more convenient but I looked through the settings and only found controller-related options.

Can you explain?
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Feb 18, 2024 @ 12:47am
Posts: 6