| View previous topic :: View next topic |
| Author |
Message |
Bennon Guest
|
Posted: Sat Mar 21, 2009 12:31 pm Post subject: Newb asking, a simple loop |
|
|
Hi Im playing a game, and I only want it to spam button ingame "2" for every 3 sec 50 times,
pls help me out... |
|
| Back to top |
|
 |
Montu
Joined: 11 Feb 2009 Posts: 142 Location: India
|
Posted: Sat Mar 21, 2009 1:16 pm Post subject: |
|
|
press Control 1 for this to work
| Code: |
^1::
loop, 50
{
send, 2
sleep 3000
}
return |
|
|
| Back to top |
|
 |
menaphus
Joined: 28 Nov 2008 Posts: 111 Location: United Kingdom
|
Posted: Sat Mar 21, 2009 2:57 pm Post subject: |
|
|
| Code: | !x::
Loop, 50
{
Send, 2
Sleep, 3000
}
Return
;you need to press Alt + x to send the code |
or remove the first line to have it work without the need of a button press _________________ Adam
http://moourl.com/8w0tx
 |
|
| Back to top |
|
 |
bennon Guest
|
Posted: Sat Mar 21, 2009 3:41 pm Post subject: |
|
|
| Thx very much, worked well! |
|
| Back to top |
|
 |
|