This repository was archived by the owner on Dec 7, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # About
2+
3+ CClicker is a simple auto-clicker made using JNA and Apache's Math library.
4+
5+ # Features
6+
7+ * Hideable window
8+ * Gaussian based random
9+ * Record your own clicking statistics and simulate it
10+ * All settings accessible via GUI
11+ * Edit any of the GUI's text
12+
13+ # Images
14+
15+ ![ Imgur] ( http://i.imgur.com/c58PT2Y.png )
Original file line number Diff line number Diff line change @@ -132,7 +132,18 @@ public void save() {
132132 conv .put (55 , "7" );
133133 conv .put (56 , "8" );
134134 conv .put (57 , "9" );
135- conv .put (48 , "0" );
135+ conv .put (112 , "F1" );
136+ conv .put (113 , "F2" );
137+ conv .put (114 , "F3" );
138+ conv .put (115 , "F4" );
139+ conv .put (116 , "F5" );
140+ conv .put (117 , "F6" );
141+ conv .put (118 , "F7" );
142+ conv .put (119 , "F8" );
143+ conv .put (120 , "F9" );
144+ conv .put (121 , "F10" );
145+ conv .put (122 , "F11" );
146+ conv .put (123 , "F12" );
136147 conv .put (189 , "-" );
137148 conv .put (187 , "=" );
138149 conv .put (219 , "[" );
@@ -142,6 +153,26 @@ public void save() {
142153 conv .put (191 , "/" );
143154 conv .put (220 , "\\ " );
144155 conv .put (190 , "." );
156+ conv .put (27 , "ESCAPE" );
157+ conv .put (45 , "INSERT" );
158+ conv .put (13 , "RETURN" );
159+ conv .put (96 , "NUM 0" );
160+ conv .put (97 , "NUM 1" );
161+ conv .put (98 , "NUM 2" );
162+ conv .put (99 , "NUM 3" );
163+ conv .put (100 , "NUM 4" );
164+ conv .put (101 , "NUM 5" );
165+ conv .put (102 , "NUM 6" );
166+ conv .put (103 , "NUM 7" );
167+ conv .put (104 , "NUM 8" );
168+ conv .put (105 , "NUM 9" );
169+ conv .put (106 , "NUM *" );
170+ conv .put (107 , "NUM +" );
171+ conv .put (109 , "NUM -" );
172+ conv .put (110 , "NUM ." );
173+ conv .put (111 , "NUM /" );
174+ conv .put (20 , "CAPS LOCK" );
175+ conv .put (8 , "BACKSPACE" );
145176 conv .put (32 , "SPACE" );
146177 conv .put (162 , "L-CTRL" );
147178 conv .put (163 , "R-CTRL" );
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ public void run() {
117117 private static void initialize () {
118118 frmClicker = new JFrame ();
119119 frmClicker .setResizable (false );
120- frmClicker .setTitle ("Clicker " );
120+ frmClicker .setTitle ("CClicker " );
121121 frmClicker .setBounds (100 , 100 , 422 , 398 );
122122 frmClicker .setDefaultCloseOperation (JFrame .DO_NOTHING_ON_CLOSE );
123123 frmClicker .addWindowListener (new WindowAdapter () {
You can’t perform that action at this time.
0 commit comments