Extremely basic Auto-Clicker Needed

Discussion in 'Web Programming' started by f1reball, Aug 29, 2008.

Extremely basic Auto-Clicker Needed
  1. Unread #21 - Sep 1, 2008 at 11:30 AM
  2. cp
    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0

    cp an cat
    Banned

    Extremely basic Auto-Clicker Needed

    Is the file already compiled? Then "java Auto" should work. Remember, the name has to be in the right case! Java is pretty picky when it comes to that. (I think case matters on Mac as well)

    (If the file is "Auto.class", you should run "java Auto")
     
  3. Unread #22 - Sep 1, 2008 at 3:54 PM
  4. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    ummm thats weird... try putting quotes around it...


    do you know what version java u have? that console reading seems like a java version problem.
     
  5. Unread #23 - Sep 1, 2008 at 6:11 PM
  6. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    Yeah its compiled and in the right case.

    Quotes didn't do anything. The latest version I got is "Java For Mac OS X 10.4 Release 6".

    Thanks for bearing with me guys.
     
  7. Unread #24 - Sep 1, 2008 at 9:08 PM
  8. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    You might have a outdated verison of java..


    this is where i got that info..


    http://forums.sun.com/thread.jspa?messageID=9409684&tstart=0


    one minute lemme check a few things.


    EDIT... I wonder if you have the jdk installed... type javac into your terminal and see what happens... if you have the jdk, i will just post the source for the clicker. D:
     
  9. Unread #25 - Sep 1, 2008 at 9:25 PM
  10. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    "Last login: Mon Sep 1 21:22:51 on ttyp1
    Welcome to Darwin!
    matthew-mcdades-computer:~ matthewmcdade$ javac
    Usage: javac <options> <source files>
    where possible options include:
    -g Generate all debugging info
    -g:none Generate no debugging info
    -g:{lines,vars,source} Generate only some debugging info
    -nowarn Generate no warnings
    -verbose Output messages about what the compiler is doing
    -deprecation Output source locations where deprecated APIs are used
    -classpath <path> Specify where to find user class files
    -cp <path> Specify where to find user class files
    -sourcepath <path> Specify where to find input source files
    -bootclasspath <path> Override location of bootstrap class files
    -extdirs <dirs> Override location of installed extensions
    -endorseddirs <dirs> Override location of endorsed standards path
    -d <directory> Specify where to place generated class files
    -encoding <encoding> Specify character encoding used by source files
    -source <release> Provide source compatibility with specified release
    -target <release> Generate class files for specific VM version
    -version Version information
    -help Print a synopsis of standard options
    -X Print a synopsis of nonstandard options
    -J<flag> Pass <flag> directly to the runtime system

    matthew-mcdades-computer:~ matthewmcdade$ "
     
  11. Unread #26 - Sep 1, 2008 at 9:40 PM
  12. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    NICE. You have the jdk.

    Save the following code as "Auto.java" --- make sure the A is caitilized... then do, javac Auto or javac Auto.java, but i think its the first one. D:


    Code:
    import java.awt.Robot;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.InputEvent;
    import java.util.Scanner;
    
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    
    
    public class Auto extends JFrame implements ActionListener
    {
    	
    	static Scanner sc = new Scanner(System.in);
    	private JButton help, step2, start, exit;
    	private JTextField min, max, times;
    
    	public static void main(String[] args) throws Exception
    	{
    		
    		new Auto();
    		
    	}
    
    	
    	
    	public Auto()throws Exception
    	{	
        
    		this.setSize(700,200);
    		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    		this.setTitle("SuF's Auto Clicker");
    		this.setLocationRelativeTo(null);
        
    		JPanel panel1 = new JPanel();
    		
    		panel1.add(new JLabel("Please enter lowest amount of milli-seconds to delay before clicking again :"));
        
    		min = new JTextField(15);
    		panel1.add(min);
        
    		panel1.add(new JLabel("Please enter highest amount of milli-seconds to delay before clicking again :"));
    	    
    		max = new JTextField(15);
    		panel1.add(max);
    		
    		panel1.add(new JLabel("Please enter how many times you want the auto clicker to click : "));
    	    
    		panel1.add(new JLabel("                             "));
    		
    		times = new JTextField(15);
    		panel1.add(times);
    		
    		panel1.add(new JLabel("                              "));
    		
    		start = new JButton("Start");
    		start.addActionListener(this);
    		panel1.add(start);
    		start.setMnemonic('z');
    		this.add(panel1);
    	    this.setVisible(true);
    	
    	    exit = new JButton("Exit");
    		exit.addActionListener(this);
    		panel1.add(exit);
    		exit.setMnemonic('x');
    		this.add(panel1);
    	    this.setVisible(true);
    	
    	}
    	
    		private int clicks = 0;
    	
    	public void actionPerformed(ActionEvent e)
    	{
    		if (e.getSource() == help)
    		{
    			JOptionPane.showMessageDialog(Auto.this,"Enter all the things you are asked for. The hotkey to start the program and to end it is 'Alt' + 'S'. " ,
    			"Step 1", JOptionPane.INFORMATION_MESSAGE);
    		    
    		}
    		if (e.getSource() == step2)
    			{
    				JOptionPane.showMessageDialog(Auto.this,"Play around with the delay between clicks. Picking 150 and 300 is a medium pace tap." ,
    				"Step 1", JOptionPane.INFORMATION_MESSAGE);
    		    
    			}
    
    	
    
    		if (e.getSource() == start)
    		{
    			try
    			{
    				start();
    			}
    			 catch (Exception r)
                 {
                    
                 }
    
    		}
    		
    		if (e.getSource() == exit)
    		{
    					
    			System.exit(0);
    
    		}
    	
    	
    	}	
    	
    	public void start() throws Exception
    	{
    		
    		int lownum1 = askLow();
    		int highnum1 = askHigh();
    		int howmany1 = askHowMany();
    		int delay = clickDelay(lownum1, highnum1);
    		Robot auto = new Robot();
    		{
    			
    			for(int x = 0; x < howmany1 + 1; x++)
    				{
    					int delay1 = clickDelay(5, 15);
    					auto.mousePress(InputEvent.BUTTON1_MASK);
    					auto.delay(delay1);
    					auto.mouseRelease(InputEvent.BUTTON1_MASK);
    					auto.delay(delay);
    					
    				}
    			
    			System.exit(0);
    		}
    		
    	}
    	public static int clickDelay(int min, int max)
    	{
    		int cDelay = (int)(Math.random() * (max - min + 1)) + min;
    		return cDelay;
    	}
    
    	public int askLow()
    	{
    		
    		int lownum = Integer.parseInt(min.getText());
    		return lownum;
    	}
    	public int askHigh()
    	{
    		
    		int highnum = Integer.parseInt(max.getText());
    		return highnum;
    	}
    	public int askHowMany()
    	{
    		int howmany = Integer.parseInt(times.getText());
    		return howmany;
    	}
    	
    	
    
    }
    
     
  13. Unread #27 - Sep 1, 2008 at 10:24 PM
  14. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    I must have done something really wrong because I pasted that into terminal and this happened:

    "Last login: Mon Sep 1 22:21:09 on ttyp1
    Welcome to Darwin!
    matthew-mcdades-computer:~ matthewmcdade$ import java.awt.Robot;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.InputEvent;
    import java.util.Scanner;

    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTextField;


    public class Auto extends JFrame implements ActionListener
    {

    static Scanner sc = new Scanner(System.in);
    private JButton help, step2, start, exit;
    private JTextField min, max, times;

    public static void main(String[] args) throws Exception
    {

    new Auto();

    }



    public Auto()throws Exception
    {

    this.setSize(700,200);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setTitle("SuF's Auto Clicker");
    this.setLocationRelativeTo(null);

    JPanel panel1 = new JPanel();

    panel1.add(new JLabel("Please enter lowest amount of milli-seconds to delay before clicking again :"));

    min = new JTextField(15);
    panel1.add(min);

    panel1.add(new JLabel("Please enter h-bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import java.awt.event.ActionEvent;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import java.awt.event.ActionListener;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import java.awt.event.InputEvent;
    import java.util.Scanner;

    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTextField;


    public class Auto extends JFrame implements ActionListener
    {

    static Scanner sc = new Scanner(System.in);
    private JButton help, step2, start, exit;
    private JTextField min, max, times;

    public static void main(String[] args) throws Exception
    {

    new Auto();

    }



    public Auto()throws Exception
    {

    this.setSize(700,200);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setTitle("SuF's Auto Clicker");
    this.setLocationRelativeTo(null);

    JPanel panel1 = new JPanel();

    panel1.add(new JLabel("Please enter lowest amount of milli-seconds to delay before clicking again :"));

    min = new JTextField(15);
    panel1.add(min);

    panel1.add(new JLabel("Please enter highest amount of milli-seco-bash: import: command not foundin :"));
    matthew-mcdades-computer:~ matthewmcdade$ import java.util.Scanner;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ import javax.swing.JButton;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import javax.swing.JFrame;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import javax.swing.JLabel;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import javax.swing.JOptionPane;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import javax.swing.JPanel;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$ import javax.swing.JTextField;
    -bash: import: command not found
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ public class Auto extends JFrame implements ActionListener
    -bash: public: command not found
    matthew-mcdades-computer:~ matthewmcdade$ {
    >
    > static Scanner sc = new Scanner(System.in);
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$ private JButton help, step2, start, exit;
    -bash: private: command not found
    matthew-mcdades-computer:~ matthewmcdade$ private JTextField min, max, times;

    public static void main(String[] args) throws Exception
    {

    new Auto();

    }



    public Auto()throws Exception
    {

    this.setSize(700,200);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setTitle("SuF's Auto Clicker");
    this.setLocationRelativeTo(null);

    JPanel panel1 = new JPanel();

    panel1.add(new JLabel("Please enter lowest amount of milli-seconds to delay before clicking again :"));

    min = new JTextField(15);
    panel1.add(min);

    panel1.add(new JLabel("Please enter highest amount of milli-seconds to delay before clicking again :"));

    el1.add(max);

    panel1.add(new JLabel("Please enter how many times you want the auto clicker to click : "));

    panel1.add(new JLabel(" "));

    times = new JTextField(15);
    panel1.add(times);

    panel1.add(new JLabel(" "));

    start = new JButton("Start");
    start.addActionListen-bash: private: command not found
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ public static void main(String[] args) throws Exception
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$ {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > new Auto();
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ \{
    -bash: {: command not found
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ (JFrame.EXIT_ON_CLOSE);
    -bash: JFrame.EXIT_ON_CLOSE: command not found
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    awk kprop rvim
    matthew-mcdades-computer:~ matthewmcdade$ RelativeTo(null);
    -bash: syntax error near unexpected token `null'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el panel1 = new JPanel();
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(new JLabel("Please enter lowest amount of milli-seconds to delay before clicking again :"));
    -bash: syntax error near unexpected token `new'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ = new JTextField(15);
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(min);
    -bash: syntax error near unexpected token `min'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(new JLabel("Please enter highest amount of milli-seconds to delay before clicking again :"));
    -bash: syntax error near unexpected token `new'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(new JLabel("Please enter how many times you want the auto clicker to click : "));
    -bash: syntax error near unexpected token `new'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(new JLabel(" "));

    times = new JTextField(15);
    panel1.add(times);

    panel1.add(new JLabel(" "));

    start = new JButton("Start");
    start.addActionListener start.addActionListener sta start.setMnemonic('z');
    this.add(panel1);
    this.setVisible(true);

    exit = new JButton("Exit");
    exit.addActionListener(this);
    panel1.add(exit);
    exit.setMnemonic('x');
    this.add(panel1);
    this.setVisible(true);

    }

    private int clicks = 0;

    public void actionPerformed(ActionEvent e)
    {
    if (e.getSource() == help)
    {
    JOptionPane.showMessageDialog(Auto.this,"Enter all the things you are asked for. The hotkey to start the program and to end it is 'Alt' + 'S'. " ,
    "Step 1", JOptionPane.INFORMATION_MESSAGE);

    }
    if (e.getSource() == step2)
    {
    JOptionPane.showMessageDialog(Auto.this,"Play around with the delay between clicks. Picking 150 and 300 is a medium pace tap." ,
    "Step 1", JOptionPane.INFORMAT "Step E);

    -bash: syntax error near unexpected token `new'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    matthew-mcdades-computer:~ matthewmcdade$ ew JTextField(15);
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(times);
    -bash: syntax error near unexpected token `times'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(new JLabel(" "));
    -bash: syntax error near unexpected token `new'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    matthew-mcdades-computer:~ matthewmcdade$ ew JButton("Start");
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ Listenerstart.addActionListenerstastart.setMnemonic('z');
    -bash: syntax error near unexpected token `'z''
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1);
    -bash: syntax error near unexpected token `)'
    matthew-mcdades-computer:~ matthewmcdade$ this.setVisible(true);
    -bash: syntax error near unexpected token `true'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ exit = new JButton("Exit");
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ Listener(this);
    -bash: syntax error near unexpected token `this'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1.add(exit);
    -bash: syntax error near unexpected token `exit'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ emonic('x');
    -bash: syntax error near unexpected token `'x''
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ el1);
    -bash: syntax error near unexpected token `)'
    matthew-mcdades-computer:~ matthewmcdade$ this.setVisible(true);
    -bash: syntax error near unexpected token `true'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ }
    -bash: syntax error near unexpected token `}'
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    matthew-mcdades-computer:~ matthewmcdade$ t clicks = 0;
    -bash: t: command not found
    matthew-mcdades-computer:~ matthewmcdade$
    matthew-mcdades-computer:~ matthewmcdade$ public void actionPerformed(ActionEvent e)
    -bash: syntax error near unexpected token `('
    matthew-mcdades-computer:~ matthewmcdade$ {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > if (e.getSource() == help)
    -bash: syntax error near unexpected token `=='
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    matthew-mcdades-computer:~ matthewmcdade$ Pane.showMessageDialog(Auto.this,"Enter all the things you are asked for. The hotkey to start the program and to end it is 'Alt' + 'S'. " ,
    -bash: syntax error near unexpected token `Auto.this,"Enter all the things you are asked for. The hotkey to start the program and to end it is 'Alt' + 'S'. "'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    matthew-mcdades-computer:~ matthewmcdade$ Pane.INFORMATION_MESSAGE);
    -bash: syntax error near unexpected token `)'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    awk kprop rvim
    b2m kpropd rwho
    banner krb5-config rwhod
    basename krb524d s2p
    bash krb5kdc sa
    bashbug ksh sample
    batch kswitch sar
    bc ktrace say
    bg ktutil sc_auth
    biff kvno sc_usage
    bind lam scp
    bless languagesetup screen
    blued last screencapture
    bootparamd lastcomm screenreaderd
    bpwhoami latency script
    break launchctl scselect
    bspatch launchd scutil
    bspatch_apple launchd_debugd sdiff
    builtin ldapadd security
    bunzip2 ldapcompare securityd
    bzcat ldapdelete sed
    bzcmp ldapmodify select
    bzdiff ldapmodrdn sendmail
    bzegrep ldappasswd serialver
    bzfgrep ldapsearch servertool
    bzgrep ldapwhoami service
    bzip2 leave set
    bzip2recover less setkey
    bzless lessecho setregion
    bzmore lesskey sftp
    c++filt let sh
    c2ph libnetcfg shar
    c_rehash link shift
    cac_anchors lipo shlock
    cac_cron lkbib shopt
    cal ln showmount
    calendar local shutdown
    cancel locale sips
    cap_mkdb localedef slapadd
    captoinfo locate slapcat
    case lock slapdn
    cat lockfile slapindex
    cd logger slappasswd
    certtool login slaptest
    chat logname slattach
    checkgid logout sleep
    checknr logresolve sliceprint
    chflags look slogin
    chfn lookbib slp_reg
    chgrp lookupd slpd
    chmod lp smbcacls
    chown lpadmin smbclient
    chpass lpc smbcontrol
    chroot lpinfo smbcquotas
    chsh lpmove smbd
    cksum lpoptions smbget
    clear lppasswd smbpasswd
    clri lpq smbspool
    cmp lpr smbstatus
    col lprm smbtar
    colcrt lpstat smbtree
    colldef ls smbutil
    colrm lsbom smtpd.py
    column lsof smtpd2.5.py
    comm lsvfs snmpbulkget
    command lwresd snmpbulkwalk
    compgen mDNS snmpcheck
    compile_et mDNSResponder snmpconf
    complete machine snmpd
    compress mail snmpdelta
    configd mailq snmpdf
    continue mailstat snmpget
    coreaudiod mailx snmpgetnext
    cp makedbm snmpinform
    cpan makeinfo snmpnetstat
    cpio man snmpset
    crc32 manpath snmpstatus
    createhomedir md snmptable
    crlrefresh md5 snmptest
    cron mdfind snmptranslate
    crontab mdimport snmptrap
    cscope mdls snmptrapd
    csh mdutil snmpusm
    csplit megaraid snmpvacm
    cups-calibrate memberd snmpwalk
    cups-config mesg soelim
    cupsaddsmb mib2c softwareupdate
    cupsd mib2c-update sort
    cupstestppd mkafmmap source
    curl mkbom splain
    curl-config mkdir split
    cut mkextunpack spray
    cvs-diff-branch mkfifo sqlite3
    cvs-make-branch mkfile srm
    cvs-merge-branch mklocale ssh
    cvs-revert mknod ssh-add
    cvs-view-diffs mkslapdconf ssh-agent
    date mktemp ssh-keygen
    dbmmanage mmroff ssh-keyscan
    dc mnthome sshd
    dd more stat
    declare mount states
    defaults mount_afp stdethers
    dev_mkdb mount_autofs stdhosts
    df mount_cd9660 strings
    diff mount_cddafs stty
    diff3 mount_devfs su
    diffpp mount_fdesc sudo
    diffstat mount_ftp sum
    dig mount_hfs suspend
    dirname mount_msdos sw_vers
    dirs mount_nfs swat
    dirt mount_ntfs sync
    disable mount_smbfs sysctl
    diskarbitrationd mount_synthfs syslog
    disklabel mount_udf syslogd
    disktool mount_volfs system_profiler
    diskutil mount_webdav systemkeychain
    disown mountd tab2space
    matthew-mcdades-computer:~ matthewmcdade$ Pane.showMessageDialog(Auto.this,"Play around with the delay between clicks. Picking 150 and 300 is a medium pace tap." ,
    -bash: syntax error near unexpected token `Auto.this,"Play around with the delay between clicks. Picking 150 and 300 is a medium pace tap."'
    matthew-mcdades-computer:~ matthewmcdade$
    Display all 975 possibilities? (y or n)
    ! ipconfig racoon
    . ipcrm rarpd
    : ipcs rcp
    AppleFileServer ipf-mod.pl rcs-checkin
    BootCacheControl ipfw rdoc
    DirectoryService irb rdump
    KernelEventAgent isc-config.sh read
    SystemStarter jar readlink
    [ jarsigner readonly
    [[ java reboot
    ]] java-rmi.cgi refer
    a2p javac reject
    ab javadoc renice
    ac javah repquota
    accept javap reset
    accton javaws restore
    aclocal jconsole return
    aclocal-1.6 jdb rev
    addftinfo jinfo revnetgroup
    afmtodit jmap ri
    alias jobs rlogin
    apachectl join rm
    appleping jot rmdir
    appletalk jps rmic
    appletviewer jsadebugd rmid
    apply jstack rmiregistry
    apropos jstat rmt
    apt jstatd rndc
    apxs kadmin rndc-confgen
    arch kadmin.local rotatelogs
    arp kadmind route
    asr kdb5_util routed
    at kdestroy rpc.lockd
    at_cho_prn kdump rpc.statd
    atlookup kerberosautoconfig rpcclient
    atprint kextcache rpcinfo
    atq kextload rrestore
    atrm kextstat rs
    atstatus kextunload rsh
    autobind keytool rsync
    autodiskmount kgmon rtadvd
    automake kill rtsol
    automake-1.6 killall rtsold
    automator kinit ruby
    automount klist ruptime
    auval kpasswd rview
    matthew-mcdades-computer:~ matthewmcdade$ Pane.INFORMAT"Step E);

    }



    if (e.getSource() == start)
    {
    try
    {
    start();
    }
    catch (Exception r)
    {

    }

    }

    if (e.getSource() == exit)
    {

    System.exit(0);

    }


    }

    public void start() throws Exception
    {

    int lownum1 = askLow();
    int highnum1 = askHigh();
    int howmany1 = askHowMany();
    int delay = clickDelay(lownum1, highnum1);
    Robot auto = new Robot();
    {

    for(int x = 0; x < howmany1 + 1; x++)
    {
    int delay1 = clickDelay(5, 15);
    auto.mousePress(InputEvent.BUTTON1_MASK);
    auto.delay(delay1);
    auto.mouseRelease(InputEvent.BUTTON1_MASK);
    auto.delay(delay);

    }

    System.exit(0);
    }

    }
    public static int clickDelay(int min, int max)
    {
    int cDelay = (int)(Math.random() * (max - min + 1)) + min;
    return cDelay;
    }

    public int askLow()
    {

    int lownum = Integer.parseInt(min.getText());
    return lownum;
    }
    public int askH>
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > }
    >
    >
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > if (e.getSource() == start)
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > try
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > start();
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > }
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > catch (Exception r)
    > {
    >
    > }
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > }
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > if (e.getSource() == exit)
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > System.exit(0);
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > }
    >
    >
    > }
    >
    > public void start() throws Exception
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int lownum1 = askLow();
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int highnum1 = askHigh();
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int howmany1 = askHowMany();
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int delay = clickDelay(lownum1, highnum1);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > Robot auto = new Robot();
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > for(int x = 0; x < howmany1 + 1; x++)
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int delay1 = clickDelay(5, 15);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > auto.mousePress(InputEvent.BUTTON1_MASK);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > auto.delay(delay1);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > auto.mouseRelease(InputEvent.BUTTON1_MASK);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > auto.delay(delay);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > }
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > System.exit(0);
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > }
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    > }
    > public static int clickDelay(int min, int max)
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int cDelay = (int)(Math.random() * (max - min + 1)) + min;
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > return cDelay;
    > }
    >
    > public int askLow()
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int lownum = Integer.parseInt(min.getText());
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > return lownum;
    > }
    > public int askHigh()
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    >
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > inininininininininininin
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > return highnum;
    > }
    > public int askHowMany()
    > {
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > int howmany = Integer.parseInt(times.getText());
    >
    .CFUserTextEncoding .file_store_32 Library
    .DS_Store .idlerc Movies
    .Trash .jagex_cache_32 Music
    .appletviewer .nexuiz Pictures
    .bash_history .ypp_42 Public
    .bash_profile Desktop Sites
    .dvdcss Documents
    .emacs.d JExpressUninstaller.jar
    > return howmany;
    > }
    >
    >
    >
    > }"

    It's making a beeping noise too lol
     
  15. Unread #28 - Sep 2, 2008 at 9:37 PM
  16. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    Still need help...
     
  17. Unread #29 - Sep 2, 2008 at 9:50 PM
  18. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    Must i quote myself? Do this. Don't copy and paste it in. D:
     
  19. Unread #30 - Sep 2, 2008 at 11:23 PM
  20. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    Oh sorry I didn't know I had to type that in by hand.
     
  21. Unread #31 - Sep 3, 2008 at 9:23 AM
  22. LuckDuck
    Joined:
    Aug 5, 2008
    Posts:
    247
    Referrals:
    1
    Sythe Gold:
    0

    LuckDuck Active Member
    Banned

    Extremely basic Auto-Clicker Needed

    Or i can make you one ;) within 5minutes, small code.
     
  23. Unread #32 - Sep 3, 2008 at 5:12 PM
  24. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    but will it run on mac? D:
     
  25. Unread #33 - Sep 4, 2008 at 6:54 PM
  26. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    Yeah, I'm on a mac.
     
  27. Unread #34 - Sep 4, 2008 at 7:27 PM
  28. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    so did u ever get it to work?
     
  29. Unread #35 - Sep 4, 2008 at 7:31 PM
  30. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    I was away for a day but I'm back now and I want to get it working tonight. I have one more extra newbie question. How do you go down a line in the same command?
     
  31. Unread #36 - Sep 4, 2008 at 7:34 PM
  32. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    I don't know, but why would u need to? Just save the code in a file called Auto.java, then in terminal change to the dir that the .java file is in, and type javac Auto.java, or javac Auto (can't remember which)
     
  33. Unread #37 - Sep 4, 2008 at 7:41 PM
  34. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    Well when I pasted it in and saved it turned into the thing I posted above. So I thought I had to type it out by hand.

    Second when I did try to save it after I pasted the code into terminal it wouldn't let me save it as .java.

    It said I had to use .term or .java.term.
     
  35. Unread #38 - Sep 4, 2008 at 7:56 PM
  36. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Extremely basic Auto-Clicker Needed

    Ummmmm, use a text editor to save it, not the terminal.
     
  37. Unread #39 - Sep 4, 2008 at 8:01 PM
  38. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    Wow I am an idiot.
     
  39. Unread #40 - Sep 4, 2008 at 8:07 PM
  40. f1reball
    Referrals:
    0

    f1reball Guest

    Extremely basic Auto-Clicker Needed

    It works now!:nuts: Thanks so much for everything
     
< Grrr website problems. [Help Please] | Rs Dynamic Sigs Help? >

Users viewing this thread
1 guest


 
 
Adblock breaks this site