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 › Other First Person Shooter Hacks › Destiny 2 Hacks › Destiny 2 Ahk Aimbot source

Destiny 2 Ahk Aimbot source

Posts 1–15 of 16 · Page 1 of 2
Jov
[MPGH]Jov
Destiny 2 Ahk Aimbot source
This is a decompiled version of the ones you see floating out there, its aloooot safer if you do it yourself
Code:
#SingleInstance, Force
#Persistent
#NoEnv
#Warn
SendMode, Input
SetWorkingDir, %A_ScriptDir%

DirX := 0
DirY := 0

Numpad1::
#Persistent
#KeyHistory, 0
#NoEnv
#HotKeyInterval 1
#MaxHotkeysPerInterval 127
#InstallKeybdHook
#UseHook
#SingleInstance, Force
SetKeyDelay,-1, 8
SetControlDelay, -1
SetMouseDelay, 0
SetWinDelay,-1
SendMode, InputThenPlay
SetBatchLines,-1
ListLines, Off
CoordMode, Mouse, client
PID := DllCall("GetCurrentProcessId")
Process, Priority, %PID%, Normal
ZeroX := A_Screenwidth/2
ZeroY := A_Screenheight/2
CFovX := 80
CFovY := 200
ScanL := 660
ScanR := 1250
ScanT := 280
ScanB := 610
inicount := 9
fileread,settings,settings.ini

stringsplit,settings,settings,`n

if !(fileexist("settings.ini")) || (settings0-3 != inicount)
{
    iniread,rx,settings.ini,settings,sen, 3.2
    iniread,xrange,settings.ini,settings,FovX, 4.5
    iniread,yrange,settings.ini,settings,FovY, 3.5
    iniread,xa,settings.ini,settings,AimX, 85
    iniread,xy,settings.ini,settings,AimY, 49
}


Soundbeep, 750, 500
Loop, 
{
    GetKeyState, Mouse2, LButton, P
    GetKeyState, Mouse3, RButton, P
    if ( Mouse2 == "D" ) || ( Mouse3 == "D" )
    {
        GoSub MouseMoves2
    }

    GetKeyState, Key1, Numpad1, P
    if ( Key1 == "D")
    {
        Soundbeep
        break
    }
}

MouseMoves2:
imageSearch, AimPixelX, AimPixelY, 0 + (A_Screenwidth * (xrange/10)), 0 + (A_Screenheight * (yrange/10)), A_Screenwidth - (A_Screenwidth * (xrange/10)), A_Screenheight - (A_Screenheight * (yrange / 10)),   healthbar.bmp
if(AimPixelX != "" && AimPixelY != "")
{
    GoSub GetAimOffset1
    GoSub GetAimMoves1
}
else
{
imageSearch, AimPixelX, AimPixelY, 0 + (A_Screenwidth * (xrange/10)), 0 + (A_Screenheight * (yrange/10)), A_Screenwidth - (A_Screenwidth * (xrange/10)), A_Screenheight - (A_Screenheight * (yrange / 10)),  *4 orangehealthbar.bmp
    if(AimPixelX != "" && AimPixelY != "")
    {
        GoSub GetAimOffset1
        GoSub GetAimMoves1
    }
}
Return

GetAimOffset1:
Gui,Submit, Nohide
AimX := AimPixelX - ZeroX +xa
AimY := AimPixelY - ZeroY +xy

if ( AimX+10 > 0)
{
    DirX := rx / 10
}
else if ( AimX+5 > 0)
{
    DirX := rx / 15
}

if ( AimX+10 < 0) 
{
    DirX := (-rx) / 10
}
else if ( AimX+5 < 0)
{
    DirX := (-rx) / 15
}

if ( AimY+.25 > 0 ) 
{
    DirY := rx /13
}

if ( AimY+.25 < 0 ) 
{
    DirY := (-rx) /13
}

AimOffsetX := AimX * DirX
AimOffsetY := AimY * DirY
Return

GetAimMoves1:
RootX := Ceil(( AimOffsetX ** ( 1 )))
RootY := Ceil(( AimOffsetY ** ( 1 )))
MoveX := RootX * DirX
MoveY := RootY * DirY
DllCall("mouse_event", uint, 1, int, MoveX, int, MoveY, uint, 0, int, 0)
Return
- - - Updated - - -

Triggerbot+ Aimbot source:

Code:
#SingleInstance, Force
#Persistent
#NoEnv
#Warn
SendMode, Input
SetWorkingDir, %A_ScriptDir%
DirX := 0
DirY := 0
Numpad0::
ExitApp
Return
Numpad1::
#Persistent
#KeyHistory, 0
#NoEnv
#HotKeyInterval 1
#MaxHotkeysPerInterval 127
#InstallKeybdHook
#UseHook
#SingleInstance, Force
SetKeyDelay,-1, 8
SetControlDelay, -1
SetMouseDelay, 0
SetWinDelay,-1
SendMode, InputThenPlay
SetBatchLines,-1
ListLines, Off
CoordMode, Mouse, client
PID := DllCall("GetCurrentProcessId")
Process, Priority, %PID%, Normal
ZeroX := A_Screenwidth/2
ZeroY := A_Screenheight/2
CFovX := 80
CFovY := 200
ScanL := 660
ScanR := 1250
ScanT := 280
ScanB := 610
inicount := 9
fileread,settings,settings.ini
stringsplit,settings,settings,`n
if !(fileexist("settings.ini")) || (settings0-3 != inicount)
{
iniread,rx,settings.ini,settings,sen, 3.2
iniread,xrange,settings.ini,settings,FovX, 4.5
iniread,yrange,settings.ini,settings,FovY, 3.5
iniread,xa,settings.ini,settings,AimX, 85
iniread,xy,settings.ini,settings,AimY, 49
}
Soundbeep, 750, 500
Loop,
{
GetKeyState, Mouse2, LButton, P
GetKeyState, Mouse3, RButton, P
if ( Mouse2 == "D" ) || ( Mouse3 == "D" )
{
GoSub MouseMoves2
}
GetKeyState, Key1, Numpad1, P
if ( Key1 == "D")
{
Soundbeep
break
}
}
MouseMoves2:
imageSearch, AimPixelX, AimPixelY, 0 + (A_Screenwidth * (xrange/10)), 0 + (A_Screenheight * (yrange/10)), A_Screenwidth - (A_Screenwidth * (xrange/10)), A_Screenheight - (A_Screenheight * (yrange / 10)),   healthbar.bmp
if(AimPixelX != "" && AimPixelY != "")
{
GoSub GetAimOffset1
GoSub GetAimMoves1
GoSub mouseclcik
}
else
{
imageSearch, AimPixelX, AimPixelY, 0 + (A_Screenwidth * (xrange/10)), 0 + (A_Screenheight * (yrange/10)), A_Screenwidth - (A_Screenwidth * (xrange/10)), A_Screenheight - (A_Screenheight * (yrange / 10)),  *4 orangehealthbar.bmp
if(AimPixelX != "" && AimPixelY != "")
{
GoSub GetAimOffset1
GoSub GetAimMoves1
GoSub mouseclcik
}
}
Return
mouseclcik:
loop,
{
GetKeyState, Mouse2, LButton, P
GetKeyState, Mouse3, RButton, P
if ( Mouse2 == "D" ) || ( Mouse3 == "D" )
{
click, down
sleep 25
click, up, left
GoSub MouseMoves2
}
} Until ( Mouse2 == "U" )
return
GetAimOffset1:
Gui,Submit, Nohide
AimX := AimPixelX - ZeroX +xa
AimY := AimPixelY - ZeroY +xy
if ( AimX+10 > 0)
{
DirX := rx / 10
}
else if ( AimX+5 > 0)
{
DirX := rx / 15
}
if ( AimX+10 < 0)
{
DirX := (-rx) / 10
}
else if ( AimX+5 < 0)
{
DirX := (-rx) / 15
}
if ( AimY+.25 > 0 )
{
DirY := rx /13
}
if ( AimY+.25 < 0 )
{
DirY := (-rx) /13
}
AimOffsetX := AimX * DirX
AimOffsetY := AimY * DirY
Return
GetAimMoves1:
RootX := Ceil(( AimOffsetX ** ( 1 )))
RootY := Ceil(( AimOffsetY ** ( 1 )))
MoveX := RootX * DirX
MoveY := RootY * DirY
DllCall("mouse_event", uint, 1, int, MoveX, int, MoveY, uint, 0, int, 0)
Return
- - - Updated - - -

Also this only works using the settings.ini and images commonly used with the others.
parts_mpgh.net.rar
#1 · edited 8y ago · 8y ago
Ahlwong
[MPGH]Ahl
Approved.

File only contains a setting file which is clean.

It also contains 2 bmp files (images)
#2 · 8y ago
grey489177
grey489177
All anyone has to do is extract the exe using 7zip to get the source. *shrugs*

Also, since I'm the one who added the trigger version I'll just put this out there: Use the source, change something, make something more awesome, publish it here. Enjoy.
#3 · 8y ago
Jov
[MPGH]Jov
Quote Originally Posted by grey489177 View Post
All anyone has to do is extract the exe using 7zip to get the source. *shrugs*

Also, since I'm the one who added the trigger version I'll just put this out there: Use the source, change something, make something more awesome, publish it here. Enjoy.
yeah not everyone knows how to notepad c++ or 7zip so they download the exe version and you should know that most if not all pixel search aimbots get dtd if they are in a exe like that its alot easier like you said to just post the source publicly so people can run it safely and maybe edit it themselves this section is dead so its better to just give out the source for those who dont have it
#4 · 8y ago
grey489177
grey489177
Well for broad distribution exe is best because not everyone who downloads it will have AHK installed, or even be able to install AHK(EX: Cyber Cafe, campus computers, etc). Without it installed you cant run an AHK script.

They all can run an exe though.
#5 · 8y ago
ST
stryker666
Hi,
Can you please share as to how to use this ? do i just have to copy/paste this in an AHK script ? if yes then how will the settings file be used ?
#6 · 8y ago
AL
al5a6r
anyway to increase the FOV area where the bot aims, tried increasing it but the bot stopped working
#7 · 8y ago
DA
DarwinByDesign
Does this still work?
Does this still work?
#8 · 7y ago
MO
Moritzvon
Ur settings for 1080p?

Thx for sharing
#9 · 7y ago
XO
XoLoneWolf
has anyone got banned using this ?
#10 · 7y ago
RI
ricardmark1
Quote Originally Posted by XoLoneWolf View Post
has anyone got banned using this ?
Yes.
Lots of people.
#11 · 7y ago
LE
Legitlessaim
Any coders lurking around? I need someone to craft me a AHK version of this that's not detectable
#12 · 7y ago
Overload091
Overload091
How to make this work? Copy pasted and compiled - i have missed something, what?
#13 · 7y ago
Retro33
Retro33
Hi I have found this on internet. it calls Destiny Hack v3.2 I wonde rif this works at all or it is just a scam
https://********/#!JRUW0YiS!GNCO8Q4A...EuawvTfqUkmjb0
it is meganz
#14 · edited 7y ago · 7y ago
QW
qweaszx11
it detected D::::::
#15 · 7y ago
Posts 1–15 of 16 · Page 1 of 2

Post a Reply

Similar Threads

  • destiny 2 ahk aimbotBy khatabhunter in Destiny 2 Hacks
    75Last post 7y ago
  • My Aimbot source code!By wertoskiller in Combat Arms Hacks & Cheats
    8Last post 17y ago
  • Visual Basic Aimbot Source CodeBy whitten in Visual Basic Programming
    19Last post 17y ago
  • Aimbot source code with videoBy maxius12 in CrossFire Hacks & Cheats
    37Last post 16y ago
  • Aimbot source code with videoBy maxius12 in CrossFire Hacks & Cheats
    5Last post 16y ago

Tags for this Thread

None