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 › MultiPlayer Game Hacks & Cheats › Combat Arms Hacks & Cheats › [First Post] CA afk bot!

Talking[First Post] CA afk bot!

Posts 1–15 of 58 · Page 1 of 4
EpicPacMan
EpicPacMan
CA BOT [update: now has a (small) user interface]
I'm new to the forums, yet I've been playing around with online games and web applications for the better part of my life. Since this is my first post- I'm going to make it a good one.

I hack out bots for games in AutoITv3

The bot I made, specifically for my first post, auto hits the invite button as well as spitting out some text. I figure if I'm going to destroy what kdr I have while I sleep, I might as well be grammatically correct!

NOTE: This bot does not have a UI button mashing screen as I just wrote it for this post. If requested, I can make one no problem.

If there's a good amount of interest in this and people like it, then I'll go ahead and whip out a bot that can melt faces. I didn't go and write out the whole thing coz honestly, I don't want to put the hours into it if no one is going to appreciate it. We will see

If you don't have the SciTE Editor, or AutoitV3- I suggest getting it.
AutoIt v3 - Downloads

I tried to be really explain-awesome on most lines of code to make it easy to understand just what the lines are doing. I realize there are people out there who are new to the concept of Autoit especially since most of these injector, chams robot zombie coders use C++ or ASM. This code is a bit different than that. BAH I SAY! HUMBUG!

Okie! Here we go!

New Edit! URGENT:Disregard all of this crap code. I have the FULL BETA WORKING DONE! This code here is crap! I'm making a new thread with the release. Im going to remove the attachment here.
Code:
; CA invite bot for MPGH

; :::::::::::::::::
; :::::::BY::::::::
; :::EPICPACMAN::::
; :::::::::::::::::

 = 6
 = Random(1,100) ;See my post for more info on this.

WinWaitActive("Combat_Arms")
Sleep(10000);10 seconds is plenty of time to wait for CA to load.
Send(&"{enter}");Again, this is the only thing that really needs to be explained in my post.
MouseMove(1,1);This also!
Sleep(500);and THIS! :O

Do ;This is where we're going to start our DO loop.
	MouseClick("primary", 574,515,1) ; <--- self explanitory lols
	MouseClick("primary", 512, 477, 10); <- ^^^^^^^^^^^^^^^^^^^^^
	 =  - 1 ;COUNTDOWN GOGOGO
	if  > 1 Then Call("SEcountdown");SE stands for Social Engineering, a very important tool for bots.
	If  = 1 Then Call("grammar") ;Grammar is important.
	If  = 0 Then Call("endnotification");Tells other users we're gona kill my KDR nao, GOGOGO
	Sleep(10000) ;10 second nap time.
	Until  = 0 ;Pete and Repeat are on a boat. You catch the drift.

;Everything below this line is super easy to understand from the above lines calling them.
Func SEcountdown()
	Send("Sending out "&&" more invites.{enter}")
	EndFunc

Func grammar()
	Send("Sending out "&&" more invite.{enter}")
	EndFunc

Func endnotification()
	Send("No more invites. Ready or not, I'm starting.")
	EndFunc

Exit


Edit again!

Well, after a bit of sleep and some quick finger action, I have for you buttons! I understand some people have issues getting this to work. It's ok to pm me about it, I read pms lol. Please note- this isn't c++.

I may need help with some people using different screen resolutions. Post here after you try it out and let me know if it doesn't hit the buttons properly.

I'm attaching an Exe and the .au3. The exe is extractable to au3 (thats the source), I'm just including it for convenience. Sorry for not explaining much about what I've added. I did include two buttons, one is the invite bot and the other is a special NADE bot that just nades the floor. Some of you h4xzors out there have ridiculous kdrs and don't make it into games. Prollem solved! lol

It's not fully automated. You need to be sitting there monitoring your character. Later on today I'll make it join and create games. To make it stop doing what it's doing hit the space bar while you have it running.

Code:
[strike]#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)
HotKeySet("{space}", "kill")

Func kill()
	Exit
	EndFunc

ui()

Func ui()
    Local $Invitebutton, $nade, $msg, $runjump
	Global $invite, $startnotification
    GUICreate("CA bot", 300, 75)

    Opt("GUICoordMode", 2)
	
	
    $Invitebutton = GUICtrlCreateButton("Invite Bot", 50, 30, 100)
    $nade = GUICtrlCreateButton("Nadebot", 0, -1)

    GUISetState()

    
    While 1
        $msg = GUIGetMsg()
        Select
            Case $msg = $GUI_EVENT_CLOSE
                ExitLoop
            Case $msg = $Invitebutton
				$invite = 6
				$startnotification = Random(1,100)
				
				
				WinActivate("Combat_Arms")
				Sleep(10000)
				Beep(500, 100)
				Send($startnotification&"{enter}")
				MouseMove(1,1)

				Do 
					MouseClick("primary", 574,515,1)
					MouseClick("primary", 512, 477, 10)
					$invite = $invite - 1 
					if $invite > 1 Then Call("SEcountdown")
					If $invite = 1 Then Call("grammar")
					If $invite = 0 Then Call("endnotification")
					Sleep(10000) 
					Until $invite = 0 
			
			Case $msg = $nade
				WinActivate("Combat_Arms")
				Sleep(10000)
				Beep(500, 100)
				$runjump = 0
				Do
					MouseMove(0, 1000, 10)
					Send("{4 down}")
					Send("{4 up}")
					Sleep(500)
					MouseClick("primary", 400, 800, 10)
					
					$runjump = $runjump + 1
					Until $runjump = 100
        EndSelect
    WEnd
EndFunc

Func SEcountdown()
	Global $invite
	Send("Sending out "&$invite&" more invites.{enter}")
	EndFunc

Func grammar()
	Global $invite
	Send("Sending out "&$invite&" more invite.{enter}")
	EndFunc

Func endnotification()
	Send("No more invites. Ready or not, I'm starting.")
	EndFunc[/strike]


I said I'd explain a portion of the script in this post on my code there.

Since the new patch, if you repeat yourself a few times, CA has buttsex with your ability to say anything in chat for a minute.

For testing purposes (I assume this has some real purpose too, just bear with me for a moment. lol), I have the script generate a random number between 1 and 100 to tell the person running it that it's started. This way, if your playing around with it- no one will know your starting a bot and get confused and you won't get buttsexed out of script invite notifications.

I'm sure you've noticed by now, I used the BB red text color tag for my notes. Pl0x don't hurt me for saying SE is social engineering. Some people really don't know. ^_^

Anyways, thanks for reading! This has been my first post, I hope to become a decent part of the community here. Bump if you like it! lols


HOLY EDIT BATMAN! Yeah, I got really fkn bored. I'm making the GUI the buttons- everything. lmao. I'll edit this again when I'm done. Edits on the batman BATMAN!: Framework for the gui is done.. for the most part.


Just the au3 and exe in the rar attached lol.

Here is a link to the virus scan of the exe:

Virustotal. MD5: 49662bb2087c0541f4aba03e3a6a7bf7 Backdoor.Generic!IK Suspicious File Backdoor.Generic


cabot.exe - Jotti's malware scan

Ikarus and a-squared said Backdoor generic? False positives. You can decompile my code into au3 format with Scite and see there's not problem
#1 · edited 17y ago · 17y ago
Ad litteram
Ad litteram
wow... the first useful choob I've ever seen O.O
congratulations dude (y)
I hope that your bot works properly
#2 · 17y ago
EpicPacMan
EpicPacMan
Quote Originally Posted by Ad litteram View Post
wow... the first useful choob I've ever seen O.O
congratulations dude (y)
I hope that your bot works properly
I get no errors or anything- It works 100 percent! lol

It starts just 10 seconds after you load assuming you run the room.



Code:
>C:Program FilesAutoIt3SciTE..au3check.exe "C:UsersnameremovedlolDocumentsca.au3"
AutoIt3 Syntax Checker v1.54.8  Copyright (c) Tylo 2007

C:UsersnameremovedlolDocumentsca.au3 - 0 error(s), 0 warning(s)
>Exit code: 0    Time: 0.208
#3 · 17y ago
MrParo
MrParo
wow if u could make this wouldnt u be able to make hacks 4 this game?
#4 · 17y ago
EpicPacMan
EpicPacMan
Quote Originally Posted by hot202 View Post
wow if u could make this wouldnt u be able to make hacks 4 this game?
This is a hack. Yet I see a trend in this culture where a hack is defined as an unauthorized entry into an account or using a program from a vip section to make a game engine do what it's not intended to do. (No offense to you guys working on the vip progs. Not talking 'bout you doods. good work from what I've seen on youtube btw. lol)

A hack, or hacking was originally the sound your fingers make when your typing away at your keyboard. Or hacking away? hehe

From what you've asked though, yes- if I really wanted to I could make a hack for combat arms. I have experience with c++ d3d, hooking and all that madness. (rawr capt hook lol)
#5 · 17y ago
MrParo
MrParo
yeah i mean like u would be able to make like a aimbot hook thing like so whan u hold down a key it will aim at there head.
#6 · 17y ago
EpicPacMan
EpicPacMan
Quote Originally Posted by hot202 View Post
yeah i mean like u would be able to make like a aimbot hook thing like so whan u hold down a key it will aim at there head.
If I really wanted to I could make it do that on its own. lol
#7 · 17y ago
Ad litteram
Ad litteram
then you should makesome wallhack and chams dude!! =D
#8 · 17y ago
EpicPacMan
EpicPacMan
Quote Originally Posted by Ad litteram View Post
then you should makesome wallhack and chams dude!! =D
I think I just might.
#9 · 17y ago
MrParo
MrParo
lol and if u do i think u should share with me cos i have always wanted some kind of hack that has worked. there r 2 many people that play with hacks these days i just wanna be able to do it 2 cos most other people do it.
#10 · 17y ago
EpicPacMan
EpicPacMan
Quote Originally Posted by hot202 View Post
lol and if u do i think u should share with me cos i have always wanted some kind of hack that has worked. there r 2 many people that play with hacks these days i just wanna be able to do it 2 cos most other people do it.
No worries.

What I'm working on right now is free for everyone!

If the admins here feel that it would eventually be a paid deal after everything is fully automated, they have to pm me about it. I don't mind either way. Free or not, I get to learn more about something I love.
#11 · 17y ago
kizzme_not
kizzme_not
what's this do?!
#12 · 17y ago
Katie_Perry
Katie_Perry
So when using the bot you don't get disconnected?
#13 · 17y ago
A⁴
A⁴
Looks good.
Hope it works!
#14 · 17y ago
Derek
Derek
Welcome to the site EpicPacMan, nice little bot you made .
Glad your here to help us out.
#15 · 17y ago
Posts 1–15 of 58 · Page 1 of 4

Post a Reply

Similar Threads

  • mya first postBy tandm in General
    11Last post 17y ago
  • my first postBy japonte4 in General
    1Last post 17y ago
  • Obligitory First PostBy warhawk20 in Combat Arms Hacks & Cheats
    8Last post 17y ago
  • comedy central- wat yo watching. read first postBy nobartholem in General
    5Last post 17y ago

Tags for this Thread

#afk#bot#post