|
-
Apr 5th, 2010, 10:22 AM
#1
Thread Starter
Junior Member
Help with AutoClicker
Well. I need help with a small app.
I wrote AutoClicker mouse.
But there is a problem. I do not know how to do "How many clicks."
http://s43.radikal.ru/i102/1004/a5/296cbe2b150e.png
Please help me.
Source: http://hcbcs.ru/AutoClicker.rar
-
Apr 5th, 2010, 10:42 AM
#2
Re: Help with AutoClicker
If I may ask, what are your intentions with this application?
CodeBank contributions: Process Manager, Temp File Cleaner
 Originally Posted by SJWhiteley
"game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
-
Apr 5th, 2010, 11:12 AM
#3
Re: Help with AutoClicker
I'm interested in the answer to this question as well.
-
Apr 6th, 2010, 07:36 AM
#4
Thread Starter
Junior Member
Re: Help with AutoClicker
-
Apr 6th, 2010, 07:49 AM
#5
Lively Member
Re: Help with AutoClicker
Nothing to do with cheating at games ? 
attach the code your running for the "click" button?
-
Apr 6th, 2010, 07:57 AM
#6
Addicted Member
Re: Help with AutoClicker
Code:
Dim HowManyClicks As Int32 = 100
For i As Int32 = 0 To HowManyClicks
Click()
Next
'Clicking finished
As simple as that, but why wouldn't you set a global hotkey to start/stop the clicking? Or even better, hook MouseLeftDown() and start clicking, and on MouseLeftUp() stop it.
-
Apr 6th, 2010, 08:05 AM
#7
Addicted Member
Re: Help with AutoClicker
 Originally Posted by Hack
I'm interested in the answer to this question as well.
Just out of curiosity, what do you have against cheating in games anyways? It's way more fun than actually playing the games, very good practice and motivation for learning a bit more advanced aspects of programming. Also AFAIK it doesn't violate any terms of service as long as any copyrights aren't broken(modifying game clients, etc).
-
Apr 6th, 2010, 08:52 AM
#8
Lively Member
Re: Help with AutoClicker
 Originally Posted by DramaQueen
Code:
Dim HowManyClicks As Int32 = 100
For i As Int32 = 0 To HowManyClicks
Click()
Next
'Clicking finished
As simple as that, but why wouldn't you set a global hotkey to start/stop the clicking? Or even better, hook MouseLeftDown() and start clicking, and on MouseLeftUp() stop it.
do you mean like:
for ( int a= 0; a<= HowManyClicks; a++ )
{
SendMessage(Hwnd,WM_LBUTTONDOWN, BUTTON,Coords);
SendMessage(Hwnd,WM_LBUTTONUP,MK_LBUTTON,Coords);
Sleep(mSeconds);
}
that way you can add in a delay also :P
-
Apr 6th, 2010, 08:54 AM
#9
Addicted Member
Re: Help with AutoClicker
 Originally Posted by Joshwah!
do you mean like:
for ( int a= 0; a<= HowManyClicks; a++ )
{
SendMessage(Hwnd,WM_LBUTTONDOWN, BUTTON,Coords);
SendMessage(Hwnd,WM_LBUTTONUP,MK_LBUTTON,Coords);
Sleep(mSeconds);
}
that way you can add in a delay also :P
Ingenious.
-
Apr 6th, 2010, 11:12 AM
#10
Thread Starter
Junior Member
Re: Help with AutoClicker
 Originally Posted by DramaQueen
Code:
Dim HowManyClicks As Int32 = 100
For i As Int32 = 0 To HowManyClicks
Click()
Next
'Clicking finished
As simple as that, but why wouldn't you set a global hotkey to start/stop the clicking? Or even better, hook MouseLeftDown() and start clicking, and on MouseLeftUp() stop it.
Hmm. Can you show how it works in the source?
-
Apr 7th, 2010, 10:38 AM
#11
Re: Help with AutoClicker
 Originally Posted by DramaQueen
Just out of curiosity, what do you have against cheating in games anyways? It's way more fun than actually playing the games, very good practice and motivation for learning a bit more advanced aspects of programming. Also AFAIK it doesn't violate any terms of service as long as any copyrights aren't broken(modifying game clients, etc).
It voilates the terms of usage of this forum. It also voilates most game agreements, as copyright has nothing to do with this. It has everything to do with playing games online and cheating, which is what most people are after, and clearly against the user agreement you agreed to when installing the game. I don't know why you have a tendency to post in all these semi-malicious forum questions, but with a name like dramaqueen i guess it doesn't surprise me.
-
Apr 7th, 2010, 11:25 AM
#12
Addicted Member
Re: Help with AutoClicker
 Originally Posted by kleinma
It voilates the terms of usage of this forum. It also voilates most game agreements, as copyright has nothing to do with this. It has everything to do with playing games online and cheating, which is what most people are after, and clearly against the user agreement you agreed to when installing the game. I don't know why you have a tendency to post in all these semi-malicious forum questions, but with a name like dramaqueen i guess it doesn't surprise me.
There's nothing malicious in game cheating, it's just fun. While some of you dislike it, as long as any laws aren't broken I see no reason not to help them achieve their goals, not to mention letting others do it. I read these rules and I'm pretty sure they don't have anything against legal third party software with questionable morale(in some peoples opinion), though don't get me wrong - I'm not arguing about the rules with a moderator, I'm sure there's some other set of them somewhere, that I just couldn't find.
Kind regards 
PS. I post in the 'semi-malicious' threads as you put it, because I love the attention, just like you guessed from my name!
PSS. You mis-spelled violate twice.
-
Apr 7th, 2010, 11:32 AM
#13
Re: Help with AutoClicker
 Originally Posted by DramaQueen
PS. I post in the 'semi-malicious' threads as you put it, because I love the attention, just like you guessed from my name!
PSS. You mis-spelled violate twice.
ps. you misused pps
pps. i noticed that too, but why quibble?
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Apr 7th, 2010, 11:37 AM
#14
Re: Help with AutoClicker
It would fall under this rule:
You will not use these Forums for the purposes of sharing or distributing viruses, licenses, registration information, software keys, "cracks," or other information designed to do harm to or allow unlawful access to any computer hardware, software, networks, or any other systems
or if that doesn't do it for you, how about this one:
You will, if asked by a representative of the Forums, cease posting any content, and/or links to content, deemed offensive, objectionable, or in poor taste by the staff of the Forums.
as for my spelling, i tend to think faster than i type, especially when a member is annoying me
-
Apr 7th, 2010, 12:00 PM
#15
Re: Help with AutoClicker
 Originally Posted by Joshwah!
do you mean like:
for ( int a= 0; a<= HowManyClicks; a++ )
{
SendMessage(Hwnd,WM_LBUTTONDOWN, BUTTON,Coords);
SendMessage(Hwnd,WM_LBUTTONUP,MK_LBUTTON,Coords);
Sleep(mSeconds);
}
that way you can add in a delay also :P
that'd be great... but this is the VB forum.
 Originally Posted by Kleinma
It voilates the terms of usage of this forum. It also voilates most game agreements, as copyright has nothing to do with this. It has everything to do with playing games online and cheating, which is what most people are after, and clearly against the user agreement you agreed to when installing the game. I don't know why you have a tendency to post in all these semi-malicious forum questions, but with a name like dramaqueen i guess it doesn't surprise me.
+1
*aside*
I love how people assume a good aimbot is merely repetition of mouse clicks. I see this often. There's so much more to creating a GOOD (read undetectable, consistent, ability to toggle and customize sensitivity, etc) aimbot than just automating mouse clicks. I can click faster than your For loop
Last edited by stateofidleness; Apr 7th, 2010 at 12:05 PM.
-
Apr 7th, 2010, 12:08 PM
#16
Addicted Member
Re: Help with AutoClicker
 Originally Posted by kleinma
It would fall under this rule:
You will not use these Forums for the purposes of sharing or distributing viruses, licenses, registration information, software keys, "cracks," or other information designed to do harm to or allow unlawful access to any computer hardware, software, networks, or any other systems
or if that doesn't do it for you, how about this one:
You will, if asked by a representative of the Forums, cease posting any content, and/or links to content, deemed offensive, objectionable, or in poor taste by the staff of the Forums.
as for my spelling, i tend to think faster than i type, especially when a member is annoying me 
I did read that rule(the first one), and my point was that it disallows information designed to allow unlawful access to software, which in plenty of cases regarding cheating in games isn't the case. Nevertheless, I admit I was a bit out of line, it's your call what you want in the forums and what not, there's a plenty of other forums for the 'semi-malicious' stuff. Terribly sorry for pissing you off, I promise to stop crusading for cheating-rights from now on!
-
Apr 7th, 2010, 12:12 PM
#17
Addicted Member
Re: Help with AutoClicker
 Originally Posted by stateofidleness
that'd be great... but this is the VB forum.
+1
*aside*
I love how people assume a good aimbot is merely repetition of mouse clicks. I see this often. There's so much more to creating a GOOD (read undetectable, consistent, ability to toggle and customize sensitivity, etc) aimbot than just automating mouse clicks. I can click faster than your For loop 
When did the subject of an aimbot come up? AFAIK this thread's just about a simple autoclicker..? And aimbots aren't that complicated, they basically consist of reading some data from the client, calculating the angle and in a way or another send the shoot packet with those parameters.
-
Apr 7th, 2010, 12:18 PM
#18
Re: Help with AutoClicker
 Originally Posted by DramaQueen
When did the subject of an aimbot come up? AFAIK this thread's just about a simple autoclicker..?
so what other use is there to autoclick repetively?
I'm not one to throw around post count, but it's come up more than once (read A LOT). It's usually used for an aimbot. That's just fact.
 Originally Posted by DramaQueen
And aimbots aren't that complicated, they basically consist of reading some data from the client, calculating the angle and in a way or another send the shoot packet with those parameters.
that meets maybe 1 criteria i listed for a good aimbot, and AT THAT, i'd like to see you accomplish that without using a hook.
/end aimbot discussion
-
Apr 7th, 2010, 12:45 PM
#19
Addicted Member
Re: Help with AutoClicker
 Originally Posted by stateofidleness
so what other use is there to autoclick repetively?
I'm not one to throw around post count, but it's come up more than once (read A LOT). It's usually used for an aimbot. That's just fact.
that meets maybe 1 criteria i listed for a good aimbot, and AT THAT, i'd like to see you accomplish that without using a hook.
/end aimbot discussion
There's a plenty of uses to autoclick repetively! Most importantly - THIS!
Yeah better end the aimbot discussion before we both get banned
-
Apr 7th, 2010, 12:51 PM
#20
Re: Help with AutoClicker
 Originally Posted by DramaQueen
There's a plenty of uses to autoclick repetively! Most importantly - THIS!
Yeah better end the aimbot discussion before we both get banned 
Yeah that rule number 3 they have of "no auto-clickers of ANY kind" should just be thrown out the window right?
-
Apr 7th, 2010, 01:10 PM
#21
Re: Help with AutoClicker
 Originally Posted by DramaQueen
There's a plenty of uses to autoclick repetively! Most importantly - THIS!
Yeah better end the aimbot discussion before we both get banned 
what do you mean "Most importantly"... all you did was prove my point. The only use of an automatic repetitive clicker is to cheat (whether it'd be on games, tests, whatever)
-
Apr 7th, 2010, 01:26 PM
#22
Re: Help with AutoClicker
 Originally Posted by stateofidleness
what do you mean "Most importantly"... all you did was prove my point. The only use of an automatic repetitive clicker is to cheat (whether it'd be on games, tests, whatever)
I think DramaQueen was being sarcastic.
I'm really surprised this topic hasn't been labeled as against the ToC and closed; it's been here for a few days now.
-
Apr 8th, 2010, 06:20 AM
#23
Lively Member
Re: Help with AutoClicker
*nibbles thoughtfully on some popcorn*
-
Apr 8th, 2010, 07:14 AM
#24
Addicted Member
Re: Help with AutoClicker
 Originally Posted by kleinma
Yeah that rule number 3 they have of "no auto-clickers of ANY kind" should just be thrown out the window right?
Exactly, glad you got the point
-
Apr 8th, 2010, 10:39 AM
#25
Re: Help with AutoClicker
I'll admit from the start I knew nothing about click bots, and now I've consumed almost as much popcorn as Joshwah! in this thread. It seems to me that a click bot must be pretty easy to make. But the interesting thing would be think of ways to defeat a click bot. Here's my take, based on the click-as-fast-as-you-can game Drama Queen linked to.
First of all, no mouse in existence can be clicked at more than a certain speed, let's say 10 times a second. So you disqualify any entries with an average click rate over 10 per second. Then, a human being cannot click a mouse with absolute regularity, so a real person's click rate will show a certain standard deviation. So you disqualify any entries that show an un-humanlike standard deviation.
Right, all the bot makers are clever guys so they are going to suss out the game's maximum click rate and statistical model, and build their bots accordingly. The result? Ten thousand bots all come equal first. Yawn.
Anyway, the clever games designer will be able to study all the data collected and figure out a more sophisticated statistical test to measure the quality of different click bots. Once that is built in, the bot makers can set to work again. So you see, it's a statistical arms race.
Where does it end up? Two world-class mathematicians will be punching it out for click supremacy. The rest of the games designers will have well paid jobs with boring companies. And the less brilliant bot designers will be scrawling tags on bridges or other useful work.
Wajja think?
BB
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|