Ensure that you arent hitting your hotkey twice, spinning and clicking is from mouse clicks that arent being captured by a window (like f3) chances are you need a delay between f3 opening and your actions like i do. get a video of that one on sgmod and ill diagnose further
Just tested it again on SGM and now its fucked there. Heeeeellllpppp. I added a delay for 400 but it did nothing xD. I am spinning before it opens the f3 menu, which is very very odd.
I do; when I press f3 the cursor just moves back and forthcbetween the frag and where the button to confirm buying one is but that button never shows up.
Get a video. This is what its supposed to look like, this is holding numpad+ for a few seconds, then shift numpad+
im dumb, but when i use either of these, none of my clicks go through. sometimes they do, but it's so random which do and do not go through. any advice?
Odd, happy to work on this via pm. you could try replacing the clicks with a mousemove and a click... like Code: ;buy tratior $F12:: IfWinActive, Garry's Mod { Send {F3} Sleep 400 MouseMove 575, 218 Click Sleep 50 MouseMove 785, 288 Click Sleep 10 MouseMove 945, 560 Click Sleep 25 Send {F3} } return
This one doesn't work, remove the first character (;) in the code, then you're all good. Don't know why but having that character will stop autohotkey from running the script. At least it does for me.
Yea ; acts as a commenter for ahk meaning it disabled the activation key. I noted that in the title, that it is disabled.