Autoclick program

Posts 115 of 20 · Page 1 of 2
Autoclick program
Hi, i wonder if someone could make a program that press F10 - F11 - F12 every 3 secounds ?
Also first F10 (3 secs leter ) F11 ( 3 secs leter ) F12 and agian 3 sec after F10-F11-F12

I belive its pretty easy to do kind of this but i dont know anything about coding so i wonder if someone would like to make on for me!
i will add you a vouch + rep + thanks
That is indeed really easy, I don't have programming knowledge but I could put that together in a minute with C++.

Just search on YouTube for autoclicker and change the code from VK_LBUTTON to VK_F10-F12 + different interval.
Give me a second. Gonna try to attemp this in C#.
Hell, if you want to use something that you don't even need a brain for, use AutoIt scripting. Can do exactly this with ease.. Literally. The statement you'd need would be:

Code:
While (1) ; ==> Infinite loop  {
Send("{F10}") ; ==> Sends the key F10
sleep(30) ; ==> sleeps for 30 ms (change as you neeed)
and then keep going. I mean, unless you want it done in something like C++/Python and it isn't even needed.


edit; I'll just do it for you, but you'll need to download AutoIt and put it into an .au3 file for it to run.

Code:
HotKeySet("{SPACE}", "startProg") ; ==> Change {SPACE} to any key you want to press to start the program
HotKeySet("{ENTER}", "exitProg") ; ==> Change {ENTER} to stop

Func startProg()
    While(1)
        Send("{F10"})
        sleep(30) ; ==> in ms, this'll pause. Convert it to ms to sec on your own
        Send("{F11}")
        sleep(30) 
        Send("{F12}")
EndFunc

Func exitProg()
    exit()
EndFunc
Customize it to your needs.
Quote Originally Posted by Psychotic View Post
Hell, if you want to use something that you don't even need a brain for, use AutoIt scripting. Can do exactly this with ease.. Literally. The statement you'd need would be:

Code:
While (1) ; ==> Infinite loop  {
Send("{F10}") ; ==> Sends the key F10
sleep(30) ; ==> sleeps for 30 ms (change as you neeed)
and then keep going. I mean, unless you want it done in something like C++/Python and it isn't even needed.


edit; I'll just do it for you, but you'll need to download AutoIt and put it into an .au3 file for it to run.

Code:
HotKeySet("{SPACE}", "startProg") ; ==> Change {SPACE} to any key you want to press to start the program
HotKeySet("{ENTER}", "exitProg") ; ==> Change {ENTER} to stop

Func startProg()
    While(1)
        Send("{F10"})
        sleep(30) ; ==> in ms, this'll pause. Convert it to ms to sec on your own
        Send("{F11}")
        sleep(30) 
        Send("{F12}")
EndFunc

Func exitProg()
    exit()
EndFunc
Customize it to your needs.
Thanks!
i will download the program soon and come back with feedback !
Quote Originally Posted by Psychotic View Post
Hell, if you want to use something that you don't even need a brain for, use AutoIt scripting. Can do exactly this with ease.. Literally. The statement you'd need would be:

Code:
While (1) ; ==> Infinite loop  {
Send("{F10}") ; ==> Sends the key F10
sleep(30) ; ==> sleeps for 30 ms (change as you neeed)
and then keep going. I mean, unless you want it done in something like C++/Python and it isn't even needed.


edit; I'll just do it for you, but you'll need to download AutoIt and put it into an .au3 file for it to run.

Code:
HotKeySet("{SPACE}", "startProg") ; ==> Change {SPACE} to any key you want to press to start the program
HotKeySet("{ENTER}", "exitProg") ; ==> Change {ENTER} to stop

Func startProg()
    While(1)
        Send("{F10"})
        sleep(30) ; ==> in ms, this'll pause. Convert it to ms to sec on your own
        Send("{F11}")
        sleep(30) 
        Send("{F12}")
EndFunc

Func exitProg()
    exit()
EndFunc
Customize it to your needs.
I got an error while tring to start the Au3 file :

Line 6 (file "C:/user/****/destop/Auof11.au3):
send ("{f10}")
Send ("{f10}"^ ERROR

Error: Unable to parse line


You might know what i've done wrong ?


---------- Post added at 05:33 PM ---------- Previous post was at 05:29 PM ----------

Quote Originally Posted by Arun's Bitch View Post
Thanks waiting for approval
Quote Originally Posted by Artak View Post

I got an error while tring to start the Au3 file :

Line 6 (file "C:/user/****/destop/Auof11.au3):
send ("{f10}")
Send ("{f10}"^ ERROR

Error: Unable to parse line


You might know what i've done wrong ?


---------- Post added at 05:33 PM ---------- Previous post was at 05:29 PM ----------


Thanks waiting for approval
Code:
HotKeySet("{SPACE}", "startProg") ; ==> Change {SPACE} to any key you want to press to start the program
HotKeySet("{ENTER}", "exitProg") ; ==> Change {ENTER} to stop

Func Bot()
    While(1)
        Send("{F10}")
        sleep(30) ; ==> in ms, this'll pause. Convert it to ms to sec on your own
        Send("{F11}")
        sleep(30) 
        Send("{F12}")
WEnd
EndFunc

Func exitProg()
    exit()
EndFunc
Quote Originally Posted by Arun's Bitch View Post

Code:
HotKeySet("{SPACE}", "startProg") ; ==> Change {SPACE} to any key you want to press to start the program
HotKeySet("{ENTER}", "exitProg") ; ==> Change {ENTER} to stop

Func Bot()
    While(1)
        Send("{F10}")
        sleep(30) ; ==> in ms, this'll pause. Convert it to ms to sec on your own
        Send("{F11}")
        sleep(30) 
        Send("{F12}")
WEnd
EndFunc

Func exitProg()
    exit()
EndFunc
I made the AU3 File, but when i start it nothing is happning, i do press "space" to get the fill working but nothing is happning :8
Just get a program called jbit macro recorder and record you're self pressing F10,F11 etc. Then go in to settings and make the replay into 0 so it's infinite. Lel
@Dave84311 Mind to Approval Arun's Bitch's File ? @PyrexxHero whats the ? how dose it works ? could you give it to my please ?
Quote Originally Posted by Artak View Post
@Dave84311 Mind to Approval Arun's Bitch's File ? @PyrexxHero® whats the ? how dose it works ? could you give it to my please ?
Rather than making your own program, Autohotkey can be used to create simple scripts
your script would look something like this

Code:
f2::reload
$f1::
loop
{
send f10
sleep 3000
send f11 
sleep 3000
send f12
sleep 3000

}
return
to use this, you would press f1 to start the cycle and f2 to turn it off
Quote Originally Posted by PyrexxHero View Post


Rather than making your own program, Autohotkey can be used to create simple scripts
your script would look something like this

Code:
f2::reload
$f1::
loop
{
send f10
sleep 3000
send f11 
sleep 3000
send f12
sleep 3000

}
return
to use this, you would press f1 to start the cycle and f2 to turn it off
Should i make a normal Dll file ? or where should i put this code ?
i imagine how boss that would be
Posts 115 of 20 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?