Skip to content
This repository was archived by the owner on Dec 7, 2019. It is now read-only.

Commit b1e673a

Browse files
committed
Added more key translations. Added Readme
1 parent 6be2468 commit b1e673a

3 files changed

Lines changed: 48 additions & 2 deletions

File tree

Readme.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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)

src/me/coley/clicker/Keybinds.java

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff 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");

src/me/coley/clicker/ui/BotGUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)