Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Main › General › Does this program exist or can someone make one?

QuestionDoes this program exist or can someone make one?

Posts 1–15 of 19 · Page 1 of 2
SI
siksi1
Does this program exist or can someone make one?
Does anyone here know if a program exists that ghosts in the background but doubles you clicking speed? I'm talking about a program that doubles your click, clicks when you click. Essentially doubling your clicking speed without being too obvious or difficult to toggle on/off? Or does anyone know of an autoclicker that's free and lets you change the click speed and the button to toggle it? I want to click a tad bit faster on Minecraft but I don't want that 20 cps that people will instantly notice. I want a clicking program that just ghosts another click instead of toggling an auto one...? Help appreciated.
#1 · 11y ago
ED
Eddington
Yeah I'm sure there is just google auto clicker or along the lines of that. I don't see how this is such a hard task you have to come onto a game hacking forum looking for one. Otherwise just make an Autoit script. You can do it in like three lines.
#2 · edited 11y ago · 11y ago
OscR
OscR
my gaming mouse has a macro for t=when you pres the obtton on the side it clicks twice..
#3 · 11y ago
SI
siksi1
Quote Originally Posted by NemsOne View Post
my gaming mouse has a macro for t=when you pres the obtton on the side it clicks twice..
Ye something like that but I'm thinking about one where you can assign it to the left mouse button and it will double click when you click once...
#4 · 11y ago
Shadow
[MPGH]Shadow
There's a runescape auto client.. It has a autoclicker on it idk if thats what you're talking about but you can set a timer on it.

You can Google gary's hood client or garyshood.com/rsclient/
#5 · 11y ago
SI
siksi1
Quote Originally Posted by Timmy Turner View Post
There's a runescape auto client.. It has a autoclicker on it idk if thats what you're talking about but you can set a timer on it.

You can Google gary's hood client or garyshood.com/rsclient/
Ye, you can't rebind tho...
#6 · 11y ago
Jhem
Jhem
Code:
if(GetAsyncKeyState(VK_LBUTTON)&1) //if you clik then
{
keybd_event(VK_LBUTTON, 0, 0, 0); //click again
Sleep(10);
}
#7 · 11y ago
SI
siksi1
Quote Originally Posted by Jhem View Post
Code:
if(GetAsyncKeyState(VK_LBUTTON)&1) //if you clik then
{
keybd_event(VK_LBUTTON, 0, 0, 0); //click again
Sleep(10);
}
AHK will work with this?
#8 · 11y ago
Jhem
Jhem
Quote Originally Posted by siksi1 View Post


AHK will work with this?
It will not. it's c++.


- - - Updated - - -

But you can make a simple program using vb.net or c#. using the logic of my code.
#9 · 11y ago
SI
siksi1
Quote Originally Posted by Jhem View Post


It will not. it's c++.


- - - Updated - - -

But you can make a simple program using vb.net or c#. using the logic of my code.
How do I convert to a simple .exe or something like that? How does one make this work
#10 · 11y ago
Dave's Mexican
Dave's Mexican
Quote Originally Posted by siksi1 View Post


How do I convert to a simple .exe or something like that? How does one make this work
Code:
Private Sub Form1_KeyDown(ByVal sender As Object, _ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
    If e.KeyCode = Keys."'The Key You Want Here" Then
        SendKeys.Send({leftmouse})

    End If
End Sub
i think this would work in visual basic
#11 · 11y ago
COD3RIN
COD3RIN
Quote Originally Posted by Dave's Mexican View Post


Code:
Private Sub Form1_KeyDown(ByVal sender As Object, _ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
    If e.KeyCode = Keys."'The Key You Want Here" Then
        SendKeys.Send({leftmouse})

    End If
End Sub
i think this would work in visual basic
That is vb.net code he need ahk source code not using c++
#12 · 11y ago
Mokou-Sama
Mokou-Sama
Quote Originally Posted by COD3RIN View Post


That is vb.net code he need ahk source code not using c++
He could pick VB or C++ code and compile himself. Not that hard to do. for real...
#13 · 11y ago
PyrexxHero®
PyrexxHero®
Code:
f5::reload
$f6::
loop
{
Click
Sleep 500
}
return
AHK. easiest, simplest autoclicker there is. Sleep 1000 is second of waiting, so 500 is 2 clicks per second. adjust to your needs. f6 is on, f5 is off
#14 · 11y ago
Dave's Mexican
Dave's Mexican
Quote Originally Posted by COD3RIN View Post


That is vb.net code he need ahk source code not using c++
he could use vb.net as an alternative
#15 · 11y ago
Posts 1–15 of 19 · Page 1 of 2

Post a Reply

Similar Threads

  • Someone have a Cube 2: Sauerbraten Hack ? Or can someone make one ?By Tiq3reye in Other First Person Shooter Hacks
    2Last post 15y ago
  • Can someone make this kind of program for me (very simple)By paulhaas in General Game Hacking
    1Last post 13y ago
  • Can someone make a useful program like this?By whiteknightx in Vindictus Help
    0Last post 14y ago
  • Can someone make this hack?By Sphearow in Combat Arms Hack Coding / Programming / Source Code
    2Last post 16y ago
  • [REQUEST]CAN SOMEONE MAKE THIS GUN FOR ME?By mistaoo in Combat Arms Mod Discussion
    9Last post 16y ago

Tags for this Thread

None