Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 34
  1. #16
    ThFrkn's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    its working thanks

  2. #17
    gunnar13641's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Location
    My room
    Posts
    173
    Reputation
    10
    Thanks
    6
    My Mood
    Amused
    How do i close the script?

  3. #18
    Tiror's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    nice release thanks

  4. #19
    Dogu1406's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Confused
    afre converting the file it kinda worked but stopped working idk why

  5. #20
    davidderbotter's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Location
    Germany
    Posts
    15
    Reputation
    10
    Thanks
    1
    My Mood
    Blah

    Hot

    Thanks bro <3

  6. #21
    kumainu's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    11
    I see that people are coming back to BO4.

    So I'll release my latest version with improved accuracy that use with ThermalOptic.
    Just use it with ThermalOptic and It'll be perfect aimbot.

    Code:
    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    traytip, Apexec V1.0 ON! By CPL Net
    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 := 0xA7942C
    ColVn :=15
    ZeroX := (A_ScreenWidth // 2)
    ZeroY := (A_ScreenHeight // 2)
    CFovX := (A_ScreenWidth // 20)
    CFovY := (A_ScreenHeight // 44)
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY
    
    Loop, {
      If If GetKeyState("LButton", "P"){
        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.55, int, MoveY * 0.11, uint, 0, int, 0)
            }
        }
      }
      else
      If If GetKeyState("RButton", "P"){
        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.55, int, MoveY * 0.01, uint, 0, int, 0)
            }
        }
      }
    }
    
    
    
    return
    
    Paused := False
    Alt::
    Pause
    Paused := !Paused
    If (Paused)
        SoundBeep, 750, 500
    Else
        
    Return

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

    KillTheNoise (08-06-2020)

  8. #22
    xFlumpi's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    1
    started it with ahk, doesnt feel right, idk, nothing changed 4 me

  9. The Following User Says Thank You to xFlumpi For This Useful Post:

    Unrealgames (06-02-2020)

  10. #23
    KillTheNoise's Avatar
    Join Date
    May 2013
    Gender
    female
    Posts
    5,444
    Reputation
    1073
    Thanks
    2,410
    Quote Originally Posted by kumainu View Post
    I see that people are coming back to BO4.

    So I'll release my latest version with improved accuracy that use with ThermalOptic.
    Just use it with ThermalOptic and It'll be perfect aimbot.

    Code:
    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    traytip, Apexec V1.0 ON! By CPL Net
    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 := 0xA7942C
    ColVn :=15
    ZeroX := (A_ScreenWidth // 2)
    ZeroY := (A_ScreenHeight // 2)
    CFovX := (A_ScreenWidth // 20)
    CFovY := (A_ScreenHeight // 44)
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY
    
    Loop, {
      If If GetKeyState("LButton", "P"){
        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.55, int, MoveY * 0.11, uint, 0, int, 0)
            }
        }
      }
      else
      If If GetKeyState("RButton", "P"){
        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.55, int, MoveY * 0.01, uint, 0, int, 0)
            }
        }
      }
    }
    
    
    
    return
    
    Paused := False
    Alt::
    Pause
    Paused := !Paused
    If (Paused)
        SoundBeep, 750, 500
    Else
        
    Return
    its Working well for me like a low fov/smoothing aimbot good job. I havent used much AHK in bo4 whats the ban rate like?
    Last edited by KillTheNoise; 08-06-2020 at 05:35 PM.

  11. #24
    Amytella's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Location
    Russia
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed

    Red dot

    Can you setup for red dot ?
    <3 not termo ":3

  12. #25
    Ozo-]R['s Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Cool
    - I copy the code to a new AHK file.
    - Save
    - Compile
    - First run BO4, and then AHK file

    I cant see difference while playing. Am I doing something wrong?

  13. #26
    Gayarwewale's Avatar
    Join Date
    Sep 2020
    Gender
    male
    Posts
    89
    Reputation
    28
    Thanks
    10
    Thanks bro <3

  14. #27
    Ozo-]R['s Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Cool
    Not working for me. idk why.
    Not red dot, and using NVIR in all my guns.

  15. #28
    KIZARU's Avatar
    Join Date
    Sep 2020
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    6
    My Mood
    Amazed
    Works great for me

  16. #29
    kounelos15's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    @kumainu pls can you add the aimbot with red dot etc etc

  17. #30
    bruh_moment2's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Location
    behind you
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    does this still work?

Page 2 of 3 FirstFirst 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