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 › EpicPacMan's CA AFK BOT {BETA}

EpicPacMan's CA AFK BOT {BETA}

Posts 1–15 of 52 · Page 1 of 4
EpicPacMan
EpicPacMan
EpicPacMan's CA AFK BOT {BETA}
Hey, I'm proud to announce the beta of my AFK bot.


Before you begin please note that:

If you are going to use the source and not the executable, get SciTE for autoit3.
AutoIt v3 - Downloads


Also note that:
This program is not intended to gain an advantage over other players, or increase your kill count. It will join games, die and gain gp and xp for you. Keep in mind that KDR is not everything in a game like this. In many cases having a very low KDR will fool your enemies.

If at any time you want the bot to stop working press the escape key.
There will be instances and glitches where you may need to press it.

  1. Open the au3 file attached or copy and paste the source in this post into SciTE after downloading it.
  2. Make sure Combat Arms is open- that you are logged in and in either the lobby of a server or your own room.


If your in the lobby and not using the executable:

  1. Alt + Tab to SciTE and press F5
  2. Click the afknade button
  3. Sit back, relax. Go watch a movie


If your in the lobby and using the executable:

  1. Open the executable. (CAAFKBOT.exe)
  2. Click the AfkNade button
  3. Sit back, relax. Go watch a movie


If your in your own room and not using the executable:

  1. Alt + Tab to SciTE and hit f5
  2. Click the Invite button
  3. Wait for it to finish
  4. IF and only IF there are ready users Alt +Tab and click AfkNade


If your in your own room and using the executable:

  1. Open the executable. (CAAFKBOT.exe)
  2. Click the Invite button
  3. Wait for it to finish
  4. IF and only IF there are ready users Alt +Tab and click AfkNade



(7/1/2009) Please test this out with me, I will be running this all night on my laptop as I sleep.


Please, help the project grow! Post in this thread with bugs, or suggestions.


Just like it did before, Ikarus and A-Squared are reporting false positives.
Virustotal. MD5: 5e8794249046224bd7d4c2594709d9a1 Backdoor.Generic!IK Suspicious File Backdoor.Generic

Code:
#include <GUIConstantsEx.au3>
$check = WinExists("Combat_Arms")

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

Func kill()
	Exit
	EndFunc

ui()

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

    Opt("GUICoordMode", 2)
	
	
    $Invitebutton = GUICtrlCreateButton("InviteBot", 50, 30, 100)
	$afk = GUICtrlCreateButton("AfkNade", 0, -1)
    GUISetState()

    
    While 1
        $msg = GUIGetMsg()
        Select
            Case $msg = $GUI_EVENT_CLOSE
                ExitLoop
            Case $msg = $Invitebutton
				if $check = 0 Then Call("Fail")
				$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 = $afk
			if $check = 0 Then Call("Fail")
				WinActivate("Combat_Arms")
				Sleep(10000)
				Call("join")
				
        EndSelect
    WEnd
EndFunc

Func Fail()
	MsgBox(1, "Failed", "Combat Arms is not open.")
	Exit
	EndFunc

Func join()
	Global $joinclicks
	Beep(500,100)

	Do
		$joinclicks = $joinclicks + 1
		if $joinclicks = 6 then Call("reset")
		MouseClick("primary", 247, 516, 1, 10)
		MouseClick("primary", 512, 472, 1, 10)
		Until $joinclicks = 5
	MouseClick("primary", 451, 517, 1, 20)
	sleep(10000)
	Call("nade")
EndFunc

Func nade()
	Global $nade
	Do
		Beep(500,100)
		Send("{4}")
		MouseClick("primary", 400,600, 2, 10)
		Sleep(12000)
		$nade = $nade + 1
		if $nade = 3 Then Call("reset")
		Until $nade = 2
Call("join")
	EndFunc

Func reset()
	Global $joinclicks, $nade
	$joinclicks = 0
	$nade = 0
	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.{enter}")
	EndFunc
If you use or like this idea, press the thanks button! Love you.
#1 · 17y ago
Ryzon
Ryzon
Wait.. How come your reposting it?
#2 · 17y ago
RO
rocko454
didnt you already post this? Oops someone just said that

Looks awesome tho, good work. If i wasnt a kdr whore theen i wud use it
#3 · 17y ago
EpicPacMan
EpicPacMan
Quote Originally Posted by Ryzon View Post
Wait.. How come your reposting it?
This is the usable version of the code I originally created. I removed the attachments from the other post and am petitioning for it to be closed.


didnt you already post this? Oops someone just said that

Looks awesome tho, good work. If i wasnt a kdr whore theen i wud use it

This is the usable version of the code I originally created. I removed the attachments from the other post and am petitioning for it to be closed.

Also, tyvm
#4 · 17y ago
Obama
Obama
Wowzers, new to mpgh and already pwning. Great job and Ill close the other one I guess. Keep up the good work.
#5 · 17y ago
Katie_Perry
Katie_Perry
Ok then. Testing this bot
#6 · 17y ago
vong96
vong96
lemme know the results of the test xP
#7 · 17y ago
AS
aswhooper
WORKS 100%

LOVE YA lol
#8 · 17y ago
MrParo
MrParo
so is this like the bot thats already out?
#9 · 17y ago
vong96
vong96
Well im gonna go test this out right now ill let everyone know how it goes xD
#10 · 17y ago
HA
HackPack
well that was mighty fast...faster than coders for PSP hacks...not advertising! Keep up the the excellent work pal!
#11 · 17y ago
MO
Mouzie
Great job, good luck. :3
#12 · 17y ago
Derek
Derek
Nice! Your going be a Combat Arm Section GOD!
#13 · 17y ago
vong96
vong96
Alright one thing...When using the bot how long does it take aprox to receive the gp/xp
#14 · 17y ago
vong96
vong96
Well theres no doubt the hack/bot works, but how well it works might be a concern to people. Maybe 1 game which can last anywhere from 10-30mins will get you around 30-80 gp/xp, not too bad but could be improved with later versions after more testing and what not. Great release
#15 · 17y ago
Posts 1–15 of 52 · Page 1 of 4

Post a Reply

Similar Threads

  • EpicPacMan's CA AFK BOT {BETA} 2nd RELEASE!By EpicPacMan in Combat Arms Hacks & Cheats
    63Last post 17y ago
  • does any1 have a bot for ether saga online open betaBy Oranj in General Hacking
    1Last post 17y ago
  • Welcome to Runes of the Magic Bot(Rombot) free Open Beta!By mage888 in Runescape Hacks / Bots
    0Last post 17y ago
  • aim botsBy nutter in General Game Hacking
    6Last post 20y ago
  • gunbound bots?By artiemas in General Game Hacking
    2Last post 20y ago

Tags for this Thread

#afk#beta#bot#epicpacman