Page 1 of 3 123 LastLast
Results 1 to 15 of 34
  1. #1
    kumainu's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    11

    [AHK] BO4 AIMBOT (Sort of)

    Since this game got a weapon in loot box, I decided to release my aimbot just to ruin these game.
    And MW is coming next month anyways.


    // This aimbot use AHK, So I won't be upload any file //


    Notice the red light when you look at the enemy player? This aimbot target that red color and help you aim.



    Note: Don't use red dot or red reticle, just change the reticle to other color.
    Note2: If there're red background behind enemy, this will throw off your aim.
    Note3: I use this since AW, It's work great with thermal, but since BO4 thermal reticle is yellow and player heat is also yellow, this hack is useless for BO4.


    CODE:
    Code:
    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    version = 1.0
    traytip, Sharpshooter %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, Sharpshooter %version%
    Menu, tray, Add, Sharpshooter %version%, return
    Menu, tray, Add
    Menu, tray, Add, Help, info
    Menu, tray, Add, Exit, exit
    SetKeyDelay,-1, 1
    SetControlDelay, -1
    SetMouseDelay, -1
    SetWinDelay,-1
    SendMode, InputThenPlay
    SetBatchLines,-1
    ListLines, Off
    CoordMode, Pixel, Screen, RGB
    CoordMode, Mouse, Screen
    PID := DllCall("GetCurrentProcessId")
    Process, Priority, %PID%, High
     
    EMCol := 0xFF566B
    ColVn := 30
    AntiShakeX := (A_ScreenHeight // 160)
    AntiShakeY := (A_ScreenHeight // 128)
    ZeroX := (A_ScreenWidth // 2)
    ZeroY := (A_ScreenHeight // 2)
    CFovX := (A_ScreenWidth // 8)
    CFovY := (A_ScreenHeight // 8)
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY
    
    Loop, {
        KeyWait, LButton, D
        PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
        if (!ErrorLevel=0) {
            loop, 10 {
                PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
                AimX := AimPixelX - ZeroX
                AimY := AimPixelY - ZeroY
                DirX := -1
                DirY := -1
                If ( AimX > 0 ) {
                    DirX := 1
                }
                If ( AimY > 0 ) {
                    DirY := 1
                }
                AimOffsetX := AimX * DirX
                AimOffsetY := AimY * DirY
                MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
                MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
                DllCall("mouse_event", uint, 1, int, MoveX * 1.5, int, MoveY, uint, 0, int, 0)
            }
        }
    }
    
    Pause:: pause
    return:
    goto, init
    
    info:
    msgbox, 0, Sharpsooter %version%, Made by Sharpshooter @ slut.io`nOverwatch must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance(~15m) and full-auto weapons.
    return
    
    exit:
    exitapp

    ENJOY

  2. The Following User Says Thank You to kumainu For This Useful Post:

    marauder03 (12-30-2020)

  3. #2
    rosstrist's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    bo4 automatically closes after launch of autohotkey script

  4. #3
    jonsecada's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    hi, what console? can use on blackout? if yes how im use this code? have a nice day.

  5. #4
    kumainu's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    11
    Quote Originally Posted by jonsecada View Post
    hi, what console? can use on blackout? if yes how im use this code? have a nice day.
    1.PC
    2.No, Multiplayer only,
    3.Just google AHK

  6. #5
    MrBill's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Game does not luanch using your sharp shooter 1.0

  7. #6
    RAMZFALL's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    does not work

    - - - Updated - - -

    Quote Originally Posted by RAMZFALL View Post
    does not work
    Nvm, it does work, open the game before the hack.

  8. #7
    KirstenDunst1's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    I installed AHK, named the script "MyScript", but whenever I run the script, it causes the game to crash.

    I've run it as administrator / normal mode, and before or after launching the game with the same result, a crash.

    What am I doing wrong or different than you guys where it's working?

  9. #8
    idan0475's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    5
    My Mood
    Fine
    doesnt work for me even like that help?

    - - - Updated - - -

    Quote Originally Posted by RAMZFALL View Post
    does not work

    - - - Updated - - -



    Nvm, it does work, open the game before the hack.
    Last edited by idan0475; 08-18-2019 at 10:03 AM. Reason: did some thing wromg

  10. #9
    kenone2311's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    anyone has issue with crash :'(
    I DO everything from run as admin, and run in boreless and windowed but just a minute and then it'll crash :'(
    Am I doing anything wrong or I need to do something to make this work :"(

  11. #10
    genius6040's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    aAfdasd a
    Posts
    12
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by kenone2311 View Post
    anyone has issue with crash :'(
    I DO everything from run as admin, and run in boreless and windowed but just a minute and then it'll crash :'(
    Am I doing anything wrong or I need to do something to make this work :"(
    Me too. Maybe it's patched.

  12. #11
    helghast-_-165's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    work,ty!!!!!!

  13. #12
    Rhark's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    England
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Someone can explain how to use this properly? AHK even with AHKHider closes black ops 4.

  14. #13
    AxelBlaze786's Avatar
    Join Date
    Oct 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    same issue

  15. #14
    Dean5962's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    Cant get it to work

  16. #15
    zeeeeed's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by rosstrist View Post
    bo4 automatically closes after launch of autohotkey script
    People are gonna hate me for this but you have to convert the ahk file into an exe file to make it work

Page 1 of 3 123 LastLast

Similar Threads

  1. [Detected] AHK Color Aimbot
    By Grawllix in forum Fortnite Hacks & Cheats
    Replies: 15
    Last Post: 07-25-2018, 09:15 AM
  2. [Request] Aimbot/ESP of any sort
    By Mw3playa in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 2
    Last Post: 11-05-2013, 01:34 AM
  3. [Source Code] QuakeLive Color Aimbot AHK Script
    By GEHhgerhgerhgerhrhr in forum Quake LIVE Hacks
    Replies: 6
    Last Post: 07-11-2013, 04:10 AM
  4. AHK QS + aimbot
    By 63OR63 in forum Call of Duty Black Ops Coding, Programming & Source Code
    Replies: 23
    Last Post: 03-06-2011, 12:48 PM