Facebook mouseclicks hack !
by karthikselvakumar
I came across a facebook application which counts maximum number of clicks per second and thought of emulating it in java
it is as simple as a crap code … with simple steps Download it from here
step 1:
I wrote a java code which automtes mouseclicks for N times by for loop
the code seems like :
import java.awt.Robot;
import java.awt.event.InputEvent;
/**
*
* @author karthik
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws Throwable {
Robot r=new Robot();
System.out.println(“Hurry up ! you have 10 seconds left “);
System.out.println(“This time you must have focused your mouse pointer on START button of facebook appln”);
r.delay(10000);
// TODO code application logic here
for(int i=0;i<10000;i++){
r.mousePress(InputEvent.BUTTON1_MASK);
System.out.println(“Clicking “+i+”th time “);
r.mouseRelease(InputEvent.BUTTON1_MASK);
System.out.println();
System.out.println();
}System.out.println(“Congrats ! you did it man B-)”);
}
}
now save the code as Main.java in a directory c:\ in windows or /home in linux
step 2:
open terminal
compile the java code by running from the location where code is located by
javac Main.java
in the mean time open the facebook application

step 3:
Run the java code now this is critical part
java Main
( you can directly run this by extracting Main.java.zip from above )
you will get a screen saying
“Hurry up ! you have 10 seconds left
This time you must have focused your mouse pointer on START button of facebook appln”
now focus your mouse pointer to the START button of fb appln
you will get a count more than 200 sometimes even 300 clicks per second ( depending on ur jvm )
for more clear details watch the video below :
Thank you
Disclaimer :
If you move your mouse button other than start button you will get random results around screen and may hang at times so keep the mouse pointer in START button for atleast a minute
Good work …
Good job
Thanks na
have u tried it ..
Seems to be working.
I have used X-TECH to hack my bf’s myspace and facebook and they actually sent me his information. Thought I would give you guys a heads up.
http://hackmyspace.net
[...] Facebook mouseclicks hack ! January 2010 5 comments Tags: happy new year, high blog 2011 wordpress, new year 2010, pokeon ball 2011, post 2010 wordpress, summary wordpress 2011, ubuntu wordpress 2011, wordpress new year 2011 LikeBe the first to like this post. [...]
open terminal means?