which programm running i have the logitech software^^
AutoHotKey; youtube how to run an autohotkey script
Quote:
Originally Posted by -0x41^4-
Technically it can, as it’s third-party software...
But I have NEVER seen someone get banned for using AHK.
Thanks man. The script keeps getting stuck in click mode. It seems if I hold the mouse for around 2.5-3.0 seconds it will get stuck in fire mode and not stop until I click a 2nd time. I tried slowing the click rate but it still gets stuck often, nearly every 3 fights.
Any ideas? Thanks again mate! Very weird bug but 2.5-3.0 seconds of hold seems to have it. I tested 1, 1.5, 2.0, etc and after 3.0 it seems to stop happening.
Was able to produce this bug in game, in IE and in notepad.
Thanks man. The script keeps getting stuck in click mode. It seems if I hold the mouse for around 2.5-3.0 seconds it will get stuck in fire mode and not stop until I click a 2nd time. I tried slowing the click rate but it still gets stuck often, nearly every 3 fights.
Any ideas? Thanks again mate! Very weird bug but 2.5-3.0 seconds of hold seems to have it. I tested 1, 1.5, 2.0, etc and after 3.0 it seems to stop happening.
Was able to produce this bug in game, in IE and in notepad.
I tried on two different computers and couldn't replicate the problem you're having.
Do you have anything else running (macro wise) or are you toggling frequently?
Technically it can, as it’s third-party software...
But I have NEVER seen someone get banned for using AHK.
Quote:
Originally Posted by -0x41^4-
I tried on two different computers and couldn't replicate the problem you're having.
Do you have anything else running (macro wise) or are you toggling frequently?
Code:
HotKey, *LButton, Off ;Initially, the Fast Fire part is deactivated
Return ;End of Auto-execute Section https://autohotkey.com/docs/Scripts.htm#auto
/::suspend
*F8::Hotkey, *LButton, % (Toggle := !Toggle) ? "On" : "Off"
*LButton:: ;Fast Fire part
SetMouseDelay 48
While GetKeyState("LButton","P")
Click
Return
HotKey, *LButton, Off ;Initially, the Fast Fire part is deactivated
Return ;End of Auto-execute Section https://autohotkey.com/docs/Scripts.htm#auto
/::suspend
*F8::Hotkey, *LButton, % (Toggle := !Toggle) ? "On" : "Off"
*LButton:: ;Fast Fire part
SetMouseDelay 48
While GetKeyState("LButton","P")
Click
Return
Essentially same thing, just worded differently and for some reason even when setting yours to 100 ms delay, I could still get the bug where it would spam on and stay on. Yet with this I can set a delay as low as possible and no auto bug.
Has to be something with the way its worded. So strange. I tried on my laptop and got same results.
Essentially same thing, just worded differently and for some reason even when setting yours to 100 ms delay, I could still get the bug where it would spam on and stay on. Yet with this I can set a delay as low as possible and no auto bug.
Has to be something with the way its worded. So strange. I tried on my laptop and got same results.
Weird. I had several people try and nobody else had issues. I wonder if it has something to do with your in-game settings or gun that you used.
Been using is since you posted to test and it hasn't bugged once.
Weird. I had several people try and nobody else had issues. I wonder if it has something to do with your in-game settings or gun that you used.
Been using is since you posted to test and it hasn't bugged once.
Even with game closed using chrome as the test. I could click in a certain way that would cause it to go on and stay on. Thought maybe it was the mouse so I switched from a MM710 to a G502 and had same issue. It must be something with rapid activation times or something similar. If I rapid clicked left mouse I could get it to bug almost every 3rd click.
Strange indeed.
Figure I'd post what fixed it for me incase someone ever has the same issue.
That's why it's bugging. You can't spam click rapid macros as that is the purpose of the macro. It's resetting the delay too frequently and therefore getting stuck.
Rapid fire macros are designed to be held down, not spammed, that's why it's a rapid fire macro
That's why it's bugging. You can't spam click rapid macros as that is the purpose of the macro. It's resetting the delay too frequently and therefore getting stuck.
Rapid fire macros are designed to be held down, not spammed, that's why it's a rapid fire macro
That much I get, but I was running into issues with 2 seconds of fire, break 2 seconds of fire, then it got stuck. Not so much spamming it.