Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Jov's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    WINNING
    Posts
    4,526
    Reputation
    4549
    Thanks
    17,402

    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.
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Jov; 06-08-2018 at 06:52 PM.




    THE EYES OF THE DAVESTAPO ARE UPON YOU. ANY WRONG YOU DO WE ARE GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE WE GONNA BE




  2. The Following 127 Users Say Thank You to Jov For This Useful Post:

    4us3fdamalaa (01-19-2019),acidx3d (12-12-2018),Aditor (12-26-2018),Adonorik (06-23-2019),akatsukixx2 (06-17-2018),almafno0od (01-31-2019),andonov95 (06-15-2019),AVENGER001 (01-22-2019),ben2121 (01-26-2019),Bigdog2 (11-14-2021),bobdeen (06-16-2019),bobzsmith (11-16-2019),bronzesquire (01-22-2019),bruh143 (03-10-2019),burglary (06-23-2019),caronfmc (03-13-2019),Carrots_ (02-17-2019),Cheeztits (10-14-2019),chkey01 (01-26-2019),cruciblesucks (03-16-2019),daddyjordan321 (09-13-2023),daddyme3213 (09-13-2023),DANlVAN (03-31-2019),Dante_mp (05-14-2020),darkegax99 (10-31-2020),Dev_0 (01-05-2019),djmynt (03-22-2020),DominusRx (03-07-2019),Edjan29 (03-31-2019),eLevenZ (03-03-2019),EliteExitz (08-28-2020),enoliaz (01-25-2019),erdred (03-25-2019),EzyRyder (08-16-2023),fafmp (02-14-2019),farisuno77 (10-02-2019),Fistiq (04-23-2021),FledW (11-28-2018),fortnitemove (06-21-2020),GIMMY333444 (01-18-2019),Godz404 (09-02-2023),gram2020 (03-24-2020),greg13578 (07-17-2019),HarshDarkEbm (01-23-2019),hassannasar (01-01-2019),helviio (04-01-2020),httpdevoe (01-24-2019),imbopv (01-07-2019),isaquef3 (03-15-2019),jacklam1234 (4 Weeks Ago),jag_test (01-05-2019),jayz12394 (10-18-2019),jhonatan2020 (11-13-2019),jim870226 (02-07-2019),josephman1919 (02-14-2022),juaninacka (07-21-2019),JuiSeX (05-03-2020),kaylapper (10-04-2020),kinkylord (06-16-2020),kioboy (01-22-2019),ktse1027 (10-17-2019),leszeko3 (01-27-2019),Locstroy (03-15-2019),Lokispokies (12-27-2018),Lolpino (10-29-2018),lucrida (11-25-2018),lukasblesse (01-22-2019),magickid101 (09-13-2020),maniako26 (10-20-2019),Manila (10-03-2019),MapleBro (12-28-2018),MarkedforVengeance (11-26-2018),MArtin265 (04-23-2020),Mauritsz (08-22-2020),McSaucey (09-22-2023),Meezylol (07-03-2020),melekair (08-13-2018),MilitarxD200233 (01-19-2019),momonaru (07-08-2019),Monte612 (02-17-2019),Moritzvon (11-27-2018),mrosd (07-02-2018),neocoyote03 (04-26-2019),Oneloveonelife (12-28-2018),Oscrow (07-04-2019),pewnis (04-14-2019),qazcxz200 (03-03-2019),r4venXO (02-27-2019),random1407 (09-08-2021),Raptor489 (01-09-2020),rawkerstar (01-30-2019),Retro33 (02-23-2019),rokerrrmo (08-12-2018),rolsk (08-09-2018),s4squ4tch (11-28-2021),sanane53 (02-01-2019),saninja (12-29-2019),SantinoS (10-13-2020),Schwagg (09-30-2018),SenpaiTOP (06-26-2019),Skullknightv1 (06-29-2019),slimbox (10-30-2020),soomr (12-28-2018),sopov88 (09-03-2021),soramuse (10-28-2019),Squid Boi (06-15-2018),sweetbad (07-04-2019),swpn (02-12-2022),TheDashG (05-06-2019),thedrainman (06-24-2019),thewinar (12-03-2018),Titikakabubu (09-19-2018),trthienson (12-22-2019),URBANAWP (09-29-2019),vickynguyen (07-15-2020),vitg (01-23-2019),vjzvfvfrhfcbdfz1 (10-20-2019),WIRED_Soar (05-29-2020),Wolffre (08-17-2021),yadob (09-24-2018),yakuzaaa (07-23-2019),yamanggungor (06-24-2019),yeetfrogtignd (09-24-2023),zaniakk (12-27-2018),zekeda1 (09-20-2018),ziroulk (12-26-2018),zugs (03-19-2020)

  3. #2
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Approved.

    File only contains a setting file which is clean.

    It also contains 2 bmp files (images)
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  4. #3
    grey489177's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    544
    Reputation
    18
    Thanks
    2,655
    My Mood
    Tired
    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.
    Quote Originally Posted by xXTornadoXx
    You really have a great personality
    I've never met a person like you, who can give me guidance on things and also give me alot of support. I'm glad that I met you, really glad
    Quote Originally Posted by 1 Corinthians 13:11
    When I was a child, I spoke as a child, I understood as a child, I thought as a child.
    But, when I became a man, I put childish things away.

  5. #4
    Threadstarter
    вою зауÑ
    Former Staff
    Resource Group
    Trusted
    Jov's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    WINNING
    Posts
    4,526
    Reputation
    4549
    Thanks
    17,402
    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




    THE EYES OF THE DAVESTAPO ARE UPON YOU. ANY WRONG YOU DO WE ARE GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE WE GONNA BE




  6. #5
    grey489177's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    544
    Reputation
    18
    Thanks
    2,655
    My Mood
    Tired
    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.
    Quote Originally Posted by xXTornadoXx
    You really have a great personality
    I've never met a person like you, who can give me guidance on things and also give me alot of support. I'm glad that I met you, really glad
    Quote Originally Posted by 1 Corinthians 13:11
    When I was a child, I spoke as a child, I understood as a child, I thought as a child.
    But, when I became a man, I put childish things away.

  7. #6
    stryker666's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    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 ?

  8. #7
    al5a6r's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    anyway to increase the FOV area where the bot aims, tried increasing it but the bot stopped working

  9. #8
    DarwinByDesign's Avatar
    Join Date
    Nov 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Does this still work?

    Does this still work?

  10. #9
    Moritzvon's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Cologne
    Posts
    6
    Reputation
    10
    Thanks
    1
    Ur settings for 1080p?

    Thx for sharing

  11. #10
    XoLoneWolf's Avatar
    Join Date
    Nov 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    has anyone got banned using this ?

  12. #11
    ricardmark1's Avatar
    Join Date
    Jul 2018
    Gender
    male
    Posts
    132
    Reputation
    10
    Thanks
    9
    Quote Originally Posted by XoLoneWolf View Post
    has anyone got banned using this ?
    Yes.
    Lots of people.

  13. #12
    Legitlessaim's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Any coders lurking around? I need someone to craft me a AHK version of this that's not detectable

  14. #13
    Overload091's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    How to make this work? Copy pasted and compiled - i have missed something, what?

  15. #14
    Retro33's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    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
    Last edited by Retro33; 03-12-2019 at 04:38 AM.

  16. #15
    qweaszx11's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    it detected D::::::

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] destiny 2 ahk aimbot
    By khatabhunter in forum Destiny 2 Hacks
    Replies: 75
    Last Post: 11-29-2018, 10:20 PM
  2. [Source Code] Aimbot source code with video
    By maxius12 in forum CrossFire Hacks & Cheats
    Replies: 37
    Last Post: 02-18-2010, 06:07 PM
  3. [Source Code] Aimbot source code with video
    By maxius12 in forum CrossFire Hacks & Cheats
    Replies: 5
    Last Post: 02-18-2010, 04:47 PM
  4. Visual Basic Aimbot Source Code
    By whitten in forum Visual Basic Programming
    Replies: 19
    Last Post: 08-05-2009, 10:39 AM
  5. My Aimbot source code!
    By wertoskiller in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 07-27-2009, 04:46 PM