AHK Color Aimbot menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 66
  1. #1
    ballcracker's Avatar Member
    Reputation
    16
    Join Date
    Jul 2016
    Posts
    21
    Thanks G/R
    0/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    AHK Color Aimbot

    This is AHK color aimbot I scripted.

    Tested on Windows 10 Pro, 1920x1080 and 1280x720.
    It should work on any kind of 16:9 resoultion.

    It detects enemy outline color(red) and snaps the aim to the nearest horizontal outline.(This because of the health bar color, which is red too)
    So you must run the Overwatch in boarderless windowed mode, and do not use red color as crosshair(aim dot) color.

    I tried to sell this, but this is not that good and nobody paid attention.
    So I decided to release this in public.


    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 := 0xD82A22
    ColVn := 64
    AntiShakeX := (A_ScreenHeight // 160)
    AntiShakeY := (A_ScreenHeight // 128)
    ZeroX := (A_ScreenWidth // 2)
    ZeroY := (A_ScreenHeight // 2)
    CFovX := (A_ScreenWidth // 8)
    CFovY := (A_ScreenHeight // 64)
    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
    Last edited by ev0; 09-17-2017 at 02:02 PM. Reason: No donation links allowed

    AHK Color Aimbot
  2. Thanks Nesibo, thegameguyNL, rrs3094, Dicinka (4 members gave Thanks to ballcracker for this useful post)
  3. #2
    Malig's Avatar Member
    Reputation
    5
    Join Date
    Nov 2011
    Posts
    46
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well it seems to just randomly aim all over and shoot even doing 180s not even coming close to target dummies. I tried on 2560x1440 btw, no aero, win 7, boreless window etc. the korean ahk works for me at that resolution.

  4. #3
    tienthanh2929's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    None of AHK aimbot I try work well , my aim better than them , lol

  5. #4
    ballcracker's Avatar Member
    Reputation
    16
    Join Date
    Jul 2016
    Posts
    21
    Thanks G/R
    0/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Malig View Post
    well it seems to just randomly aim all over and shoot even doing 180s not even coming close to target dummies. I tried on 2560x1440 btw, no aero, win 7, boreless window etc. the korean ahk works for me at that resolution.
    Hmm, so it doesn't work on 1440p.
    Maybe you can adjust some values to use this.

  6. #5
    Malig's Avatar Member
    Reputation
    5
    Join Date
    Nov 2011
    Posts
    46
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ballcracker View Post
    Hmm, so it doesn't work on 1440p.
    Maybe you can adjust some values to use this.
    Yeah tried 1080p too same thing.

  7. #6
    gpa's Avatar Banned
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    15
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This Worked For Me Very Good Its Not Like Korean Aimpot That You Need To Shoot The Enemy Once To Make It Work... It Aim At The Enemy Instantly this was awsome thanks

  8. #7
    paindia's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry but how do i use the code?

  9. #8
    WhoBattle's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    51
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah its shooting randomly aiming randomly

  10. #9
    Perplexity's Avatar Member
    Reputation
    4
    Join Date
    Aug 2016
    Posts
    16
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah this thing sucks. It doesn't work at all.

  11. #10
    yamahto's Avatar Member
    Reputation
    1
    Join Date
    Jul 2015
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone make it to .exe??

  12. #11
    GiftedNoob's Avatar Member CoreCoins Purchaser
    Reputation
    2
    Join Date
    Jan 2016
    Posts
    26
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried it but it doesn't work very well. I appreciate the release

  13. #12
    TheLordJesusHimself's Avatar Elite User Fuck am not Jewish. Authenticator enabled
    Reputation
    333
    Join Date
    Jun 2011
    Posts
    676
    Thanks G/R
    141/268
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    works better then i expected,

    for what it is, how small the code is

    it works good

  14. #13
    Jhautoaim's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    as soon as I press the left click, my crosshair falls down, or is developed on 360. help me pls boiz

  15. #14
    ballcracker's Avatar Member
    Reputation
    16
    Join Date
    Jul 2016
    Posts
    21
    Thanks G/R
    0/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, everone. Thanks for the comments.

    I tried using this on Windows 7, and the aim just goes straight to the sky.
    When I tested on same PC with Windows 10, it works fine.

    I don't know why, so I can't fix this :/

  16. #15
    TheLordJesusHimself's Avatar Elite User Fuck am not Jewish. Authenticator enabled
    Reputation
    333
    Join Date
    Jun 2011
    Posts
    676
    Thanks G/R
    141/268
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it works fine for me on windows 7

Page 1 of 5 12345 LastLast

Similar Threads

  1. Replies: 15
    Last Post: 02-02-2017, 10:34 AM
  2. [Selling] Osharp - C# Overwatch Color Aimbot
    By Lumi666 in forum Overwatch Buy Sell Trade
    Replies: 22
    Last Post: 08-25-2016, 05:43 AM
  3. [Bot] AutoHotKey Color Aimbot
    By ballcracker in forum Overwatch Exploits|Hacks
    Replies: 12
    Last Post: 08-19-2016, 12:47 PM
  4. Color Aimbot, WoW idea/source
    By caleb77 in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 11-02-2007, 06:51 PM
All times are GMT -5. The time now is 06:54 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search