GithubHelp home page GithubHelp logo

windows-2048 / the-fastest-mouse-clicker-for-windows Goto Github PK

View Code? Open in Web Editor NEW
148.0 18.0 30.0 144.36 MB

Free and fast, open source, full-featured, statically-linked mouse auto clicker for Windows written in vanilla C++. Uses hardware-limited arrayed Win32 SendInput() calls to reach up to 100000 clicks/s. Supports command line, random clicks and sequences of clicks. 2024 is the project's 8th ANNIVERSARY.

Home Page: https://windows-2048.github.io/The-Fastest-Mouse-Clicker-for-Windows/

License: GNU General Public License v3.0

C++ 93.54% Batchfile 0.10% Inno Setup 1.06% Shell 0.02% C 5.28%
fastest auto-clicker windows clicker full-featured microsoft mouse open-source command-line gui

the-fastest-mouse-clicker-for-windows's People

Contributors

windows-2048 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

the-fastest-mouse-clicker-for-windows's Issues

Used to be able to set very high cps (Clicks per second)

When I last used The Fastest Mouse Clicker for Windows, it truly was the fastest, I was able to set high cps like 500 and it would work fine. Now, after downloading and using this one, I can no longer do that. Setting a high cps like 500 seems to actually only be 100 cps instead of the 500 I set.

Crypto virus??

I installed this yesterday into the roaming apps folder. Today I just got an alert that a file in that folder, with the name CoinMiner.GA was found.

Windows Beeps and shortly pauses clicks @ 1000 CPS

When I set the Mouse Clicker to 1000 Clicks per Second and let it run, Windows shortly stops the clicker and a beep is sounded. I wasn't able to find a source or possible limiting factors for this.

I'm running Windows 11 and v2.6.1.0 of the Clicker.

Clicker works fine with 800 Clicks per Second and below.

Keyboard & Mouse locked and hardly able to control when pressing TOGGLE stop key

System specs: Windows 10 20H2 x64, i3 10100F, GTX 1050 Ti

Program version: 2.6.1.0 no update service

I use these driver stuff that might interfere with the application:
Motospeed K2 Keypad Driver
HIDUSBF USB overclocker or whatever
TabletDriver

5 clicks per second, works with any.
Start key J, Stop key K
Starting clicking with J, everything is fine. As soon as I press K, my mouse is frozen, my keyboard is locked and I can hardly move my mouse around. It's like my computer is frozen, but actually the mouse is the only thing thats having a hard time. It's very hard to click anything or even close the program. I genuinely do not know what causes this, but this is a serious bug.

Some info I've gathered: only works when the program is run in administrator mode.

WARNING: contains slur words, audio not needed, bug starts at 0:33~, before that is me struggling with Task Manager:

vidyo.1.mp4

Clicking above 1000 cps causes stutter

If I use a 1000 cps frequency, the autoclicker works fine.
If I go any higher, the mouse sometimes freezes for a moment, and the true cps result drops.
On cpstest.org, 2000 cps gives a true 112 cps. Meanwhile, 1000 gives 603 cps.
I have a pretty beefed up PC with a 7600X and 6000MHz RAM, and it used to not happen.

What gives?

On some PCs, actual clicking rates (CPS) may differ up to 30% from the value set in the GUI.

(From Weeii user that emailed me)

I just wanted to ask you about an issue, where the numbers I put don't outcome the same. In my old laptop, I used to put 14.50 to get 14-15 CPS (clicks per second) now, when I set it to 14.50 I get around 10. And if I set it to 15, it gives me 10 still. Same for right click. I need to fix this because this program is necessary for me, and I really need to have accurate outcomes. Do you have any solutions?

Just to know: I switched to my new PC, installing the same version of the program, but my new PC has nvidia i don't know if Nvidia is slowing it down or something.

why is this a miner

why tf does this install a miner that hides it self from task manager????

v2.6.1.0 : no clicks and mouse cannot be moved. Need taskmanager to release.

I have the following settings in my settings.dat file:
-c 1.00 -t 192 -t2 192 -s 0 -m t -b l -w tm

When I press the ' key (192) to toggle the clicking on, no clicking occurs and I cannot move the mouse anymore.
I then need to start Taskmanager to 'release' the mouse.

I'm on a Win 10 x64 computer. v2.1.4.1.beta works flawlessly.
Is there a way to create a log file that can help trace this bug?

No random clicking support in the GUI

Hi! I've read specs and found you're positioning a support for random clicking.
But when I started the program, I can't see the GUI fields to trigger that manner of clicking.

New features and bug report

hi
first of all, thank u for this great work
it is really fast in single-mode
can u plz add some feature that many auto clickers have?
1- Start timer (start at specific local system time)
2- bring adjusting click position in single mode (full speed) Or Bring Click Speed Parameter like Single-Mode in group mode because group-mode is so slower than single (with 1ms interval it gets 62 CPS)
3- add double left-click. it brings more speed for cps near double speed (in other auto clickers )
there is a bug in the start and stop of actions some time it doesn't start or stop

Trigger keys don't handle dead keys properly

I saw in the source code you use GetAsyncKey, which is fine.
However, you have to check for these dead keys:

WinUser.h
#define VK_LSHIFT         0xA0
#define VK_RSHIFT         0xA1
#define VK_LCONTROL       0xA2
#define VK_RCONTROL       0xA3
#define VK_LMENU          0xA4
#define VK_RMENU          0xA5

On line 1040 you check whether you found the pressed key (actually the released key, which is good):

if(keyUpTrig[i] && clickedOnceForTriggerFlag)

Then, on line 1057 you state this:

if (waitingForTrigger)
{
  _itoa_s(i, triggerText, 4, 10);
  SetFocus(outputWindow);
  SetDlgItemText(hWnd, GetDlgCtrlID(triggerButton), triggerText);
  my_trigger_key = atoi(triggerText);
  char winTxt[1024];
  memset(winTxt, 0, 1024);
  GetWindowText(triggerButton2, winTxt, 1024);
  my_trigger_key2 = atoi(winTxt);
  SetWindowTextA(press, string_format("press (clicking while: key <%d> keeps hit down)", my_trigger_key).c_str());
  SetWindowTextA(toggle, string_format("toggle (clicking begin: hit <%d>, end: hit <%d>)", my_trigger_key, my_trigger_key2).c_str());
  waitingForTrigger = false;
}

Unfortunately, you forget to also store the dead key states so that it's possible to start or end the clicking with for instance <LCTRL+1>.

Combination of Trigger Keys

To my understanding, you can only have one trigger key. Is there a way to change that? Maybe have the option to have a combination of trigger keys (Ex: Win+Shift+H)?

Fractional frequencies

The input field for clicks/s doesn't allow anythig besides number to be typed in. This means that you cannot put in 0.5 to click every 2 seconds whilst if you click on the help button it tells you that fractional frequencies are allowed.

End key breaks everything

No matter what the settings are, or if the clicker is running or not, whenever I click the key bound to stop clicking, my mouse breaks. It only moves sometimes and doesn't click until I press ctrl+alt+delete and get task manager to close the autoclicker app. It is completely unusable in this state.

Font size is ridiculously large

I upgraded from v2.4.x to v2.6.1.0 and now the GUI is all messed up. The fonts are extremely large! The window is 900x900 and takes up most of the screen where before the window would be nice and small. Also, the font is extremely large.
How can we change the font size?

Comparison

TFMCfW Group App: increase the limit number of clicks in a sequence above 1000

Original Author: Brian Chambers.

Hi there,

Firstly, thank you for the recent upgrades to TFMC App, very appreciated!

I was trying to find a "request" or "Feedback" section on the Github site, but couldn't - so apologies for the direct email.

I wanted to know if it's possible (through either a registry change) or an App release to increase the current 1000 click limit in the "Group App" version of the TFMC? I know it may seem odd, but it's probably the best mouse clicker i've found in terms of usability, but this limitation for a sequence I run over 15minutes is quite frustrating!! :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.