• Autohotkey - Automatic Keystroke Repitition
    2 replies, posted
For anyone who's familiar with Autohotkey, does anyone know a script that can automatically repeat a keystroke just by holding down that button? For example, if I held space in a game, it would automatically keep jumping as soon as I hit the ground again. Thanks.
You can just search the AHK forums for a rapidfire script. It's what they always say to do. [editline]07:47PM[/editline] [url]http://www.autohotkey.com/forum/search.php?mode=results[/url]
AutoHotKey is a rip-off of [url=http://autoitscript.com]AutoIt[/url]. That bastard stole the source from AutoIt (when they had it open source), changed it a bit and called it his own. Now it's closed source. Anyway, since this programming language is so easy, why don't you learn it yourself? [editline]07:55PM[/editline] Infact, I'll do it for you. [editline]08:00PM[/editline] [code]#include <Misc.au3> #NoTrayIcon $vDLL = DllOpen("user32.dll") Do If _IsPressed(20, $vDLL) Then Send("{SPACE 1}") Until _IsPressed("1B", $vDLL) ;Until ESC is pressed DllClose($vDLL)[/code] (To increase the number of times it sends space, just change the number after SPACE) Is that what you're looking for?
Sorry, you need to Log In to post a reply to this thread.