Trigger Bot AHK menu

User Tag List

Results 1 to 13 of 13
  1. #1
    Nept's Avatar Private
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    13
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Trigger Bot AHK

    Trigger Bot in AHK
    detects color around enemy.
    checks top and bottom.
    adjust for your res
    "ResX" and "ResY"
    download attached image file
    Trigger1.png :: Free File Hosting - File Dropper: File Host for Mp3, Videos, Music, Documents.
    activate with mouse5 held down.
    the button that goes back on browsers.

    Trigger Bot AHK-trigger1-png
    Code:
    #Persistent
    #NoTrayIcon
    #KeyHistory, 0
    #NoEnv
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    #InstallKeybdHook
    #UseHook
    #SingleInstance, Force
    SetKeyDelay, -1, 6
    SetControlDelay, -1
    SetMouseDelay, -1
    SetWinDelay,-1
    SetBatchLines,-1
    ListLines, Off
    
    ResX = 1920
    ResY = 1080
    
    CenterX := ResX * .5
    CenterY := ResY * .5
    
    XFoV := 4
    YFoV := 1000
    
    LeftPoint := CenterX - XFoV
    RightPoint := CenterX + XFoV
    TopPoint := CenterY - YFoV
    BottomPoint := CenterY + YFoV
    
    
    
    
    Loop  {
     
    
    GetKeyState, Mouse2,XButton1, P
     
    If ( Mouse2 == "D" ){
     
    ImageSearch,  Lside , Uside , LeftPoint, TopPoint, CenterX, CenterY, *Trans800000 *70 trigger1.png
    ImageSearch,  Rside , Dside , CenterX, CenterY, RightPoint, BottomPoint, *Trans800000 *70 trigger1.png
    
    If ( (Dside - Uside) > 0) {
    
    MouseClick, left
    
    
    Sleep 150 ; time between shots
    
    
    }}}
     
    
    RShift::
    ExitApp
    Last edited by Nept; 09-05-2016 at 11:40 PM.

    Trigger Bot AHK
  2. Thanks namloki18, Hot12345 (2 members gave Thanks to Nept for this useful post)
  3. #2
    namloki18's Avatar Member
    Reputation
    4
    Join Date
    Jun 2014
    Posts
    21
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmmm, long range ?

  4. #3
    L2af's Avatar Member

    Reputation
    11
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    8/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ..................
    Last edited by L2af; 09-05-2016 at 10:43 PM.

  5. #4
    Nept's Avatar Private
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    13
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by namloki18 View Post
    hmmm, long range ?
    adjust the *70
    ImageSearch, Lside , Uside , LeftPoint, TopPoint, CenterX, CenterY, *Trans800000 *70 trigger1.png
    ImageSearch, Rside , Dside , CenterX, CenterY, RightPoint, BottomPoint, *Trans800000 *70 trigger1.png

    higher the number more range of "red" color scanned.

  6. #5
    T:Y:R:A:N:T's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not working i had put image file and ahk script together then i run the script not shooting or doing anything

  7. #6
    Nept's Avatar Private
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    13
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xbutton1
    so mouse 5 need to be held down.
    will put into first post thanks.

  8. #7
    namloki18's Avatar Member
    Reputation
    4
    Join Date
    Jun 2014
    Posts
    21
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nept View Post
    Xbutton1
    so mouse 5 need to be held down.
    will put into first post thanks.
    how to set it, no need to hold any button to shoot ?

  9. Thanks Hot12345 (1 members gave Thanks to namloki18 for this useful post)
  10. #8
    Nept's Avatar Private
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    13
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by namloki18 View Post
    how to set it, no need to hold any button to shoot ?
    Code:
    #Persistent
    #NoTrayIcon
    #KeyHistory, 0
    #NoEnv
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 127
    #InstallKeybdHook
    #UseHook
    #SingleInstance, Force
    SetKeyDelay, -1, 6
    SetControlDelay, -1
    SetMouseDelay, -1
    SetWinDelay,-1
    SetBatchLines,-1
    ListLines, Off
    
    ResX = 1920
    ResY = 1080
    CenterX := ResX * .5
    CenterY := ResY * .5
    XFoV := 4
    YFoV := 1000
    LeftPoint := CenterX - XFoV
    RightPoint := CenterX + XFoV
    TopPoint := CenterY - YFoV
    BottomPoint := CenterY + YFoV
    
    
    
    
    Loop  {
     
    
    
     
    ImageSearch,  Lside , Uside , LeftPoint, TopPoint, CenterX, CenterY, *Trans800000 *70 trigger1.png
    ImageSearch,  Rside , Dside , CenterX, CenterY, RightPoint, BottomPoint, *Trans800000 *70 trigger1.png
    
    If ( (Dside - Uside) > 0) {
    
    MouseClick, left
    
    
    Sleep 150 ; time between shots
    
    
    }}
     
    
    RShift::
    ExitApp

  11. Thanks namloki18 (1 members gave Thanks to Nept for this useful post)
  12. #9
    rheos's Avatar Banned
    Reputation
    4
    Join Date
    Jun 2016
    Posts
    32
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't like the mouse click thing...

  13. #10
    Nept's Avatar Private
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    13
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can bind Fire key to something else. Then send your key instead of mouse click. I know it can Interrup the shots you click manually.

  14. #11
    hadee41's Avatar Member
    Reputation
    -2
    Join Date
    Mar 2014
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to make this work please
    maybe make working cheat??

  15. #12
    romeprince's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This does not work at all

    Neither on compiled version or regular ahk it is not a valid script as it currently stands.

  16. #13
    trashjoe's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    38
    Thanks G/R
    19/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New patch (Horizon map) blocks ahks!

Similar Threads

  1. [Bot] Trigger-bot?
    By comic-1337 in forum Overwatch Exploits|Hacks
    Replies: 125
    Last Post: 02-03-2017, 01:46 AM
  2. [Buying] Looking to buy a good undetectable private trigger bot
    By hanzohanamura in forum Overwatch Buy Sell Trade
    Replies: 0
    Last Post: 11-15-2016, 08:15 PM
  3. [Tutorial] questions about the Korean bot AHK
    By azxsdc1 in forum Overwatch Exploits|Hacks
    Replies: 1
    Last Post: 08-18-2016, 01:54 AM
  4. Can a RMAH review trigger bot flagging?
    By XII02 in forum Diablo 3 General
    Replies: 3
    Last Post: 08-07-2012, 12:57 AM
All times are GMT -5. The time now is 10:10 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