Page 1 of 3 123 LastLast
Results 1 to 15 of 36
  1. #1
    damnzit's Avatar
    Join Date
    Oct 2015
    Gender
    female
    Posts
    67
    Reputation
    10
    Thanks
    291
    My Mood
    Aggressive

    [AHK] BO3 Camper/Triggerbot

    How to use
    Download AHK
    If you want to use this in fullscreen, YOU HAVE TO DISABLE WINOWS AERO
    - I Use it in Fullscreen-Windowed

    In Game press Insert and aim (sniper) at a corner the bot will fire as soon s.o will pass the line (friend, enemy, or nade, explosions...)

    Features
    Enable "Triggerbot" - Insert
    Disable "Triggerbot" - F11
    Panic button - F10 (terminates autohotkey)

    Settings
    sens:=10 --> color tolerance for each color in RGB 0-255 model
    delz:=10 --> delay before shot is fired when color changes
    holdtiem:=400 --> how long you want left mouse held down after shot (really good with my norecoil ahk thingy)
    crossset:=1 --> X and Y crosshair offset in pixels


    Code:
    sens:=30
    delz:=0
    holdtiem:=100
    crossset:=3
    ;color split
    SplitRGBColor(RGBColor, ByRef Red, ByRef Green, ByRef Blue)
    {
        Red := RGBColor >> 16 & 0xFF
        Green := RGBColor >> 8 & 0xFF
        Blue := RGBColor & 0xFF
    }
     
    SplitBGRColor(BGRColor, ByRef Red, ByRef Green, ByRef Blue)
    {
        Red := BGRColor & 0xFF
        Green := BGRColor >> 8 & 0xFF
        Blue := BGRColor >> 16 & 0xFF
    }
     
    ;Menu loop
    loop
    {
    GetKeyState, state, F10
    if state = D
    {
    SoundPlay, %A_ScriptDir%\8.mp3
    sleep 2000
    ExitApp
    }
     
    GetKeyState, state, F11
    if state = D
    {
    trigger:=false
    }
     
    GetKeyState, state, Insert
    if state = D
    {
    trigger:=true
    }
     
    ;Beta trigger
    if !GetKeyState("XButton1") && trigger==true
    {
    sleep 50
    MouseGetPos, oneX, oneY 
    PixelGetColor, colorone, oneX+crossset, oneY+crossset
    SplitRGBColor(colorone, oneRed, oneGreen, oneBlue)
    }
     
    if GetKeyState("XButton1") && trigger==true
    {
    sleep 1
    MouseGetPos, twoX, twoY 
    PixelGetColor, colortwo, twoX+crossset, twoY+crossset
    SplitRGBColor(colortwo, twoRed, twoGreen, twoBlue)
     
    if (((oneRed-sens)<=twoRed) && ((oneRed+sens)<=twoRed)) or (((oneRed-sens)>=twoRed) && ((oneRed+sens)>=twoRed)) or (((oneGreen-sens)<=twoGreen) && ((oneGreen+sens)<=twoGreen)) or (((oneGreen-sens)>=twoGreen) && ((oneGreen+sens)>=twoGreen)) or (((oneBlue-sens)<=twoBlue) && ((oneBlue+sens)<=twoBlue)) or (((oneBlue-sens)>=twoBlue) && ((oneBlue+sens)>=twoBlue))
    {
    sleep delz
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep holdtiem
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    }
    }
    }


    Credits: Peans´Trigger
    Last edited by akim14; 11-17-2015 at 06:47 AM.

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

    KarmaKills (11-14-2015),Xodius (11-09-2015)

  3. #2
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused
    Trying this out right now thanks man

    - - - Updated - - -

    Not working for some reason

  4. #3
    Gratin's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    182
    Reputation
    21
    Thanks
    501
    My Mood
    Inspired
    Saw this on another forum. Didn't work for me either.
     

    Quote Originally Posted by RyanFalterJr View Post
    Vouch for Gratin, he went first, i gave him the items. Easy trader trustworthy

  5. #4
    GrouL's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    sweden
    Posts
    105
    Reputation
    10
    Thanks
    13
    My Mood
    Bored
    Doesn't work for me either :l

  6. #5
    wyvern1990's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    2,817
    Quote Originally Posted by GrouL View Post
    Doesn't work for me either :l
    I dient write or test it, but xbutton should be Lmousebutton( if not playing with controller)
    Last edited by wyvern1990; 11-10-2015 at 08:02 AM.

  7. #6
    MrScullcandy's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Never used AutoHotkey, is there a tutorial to edit these "Settings" and stuff?

  8. #7
    wyvern1990's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    2,817
    Quote Originally Posted by MrScullcandy View Post
    Never used AutoHotkey, is there a tutorial to edit these "Settings" and stuff?
    change the settings in the script.

  9. #8
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    so damnzit ur on UC too nice to see u like my thread

    For ppl where it doesnt work try fullscreen windowed

    for better results use a TERMAL on ur sniper

    IT works 100% with sense 60

  10. The Following User Says Thank You to Sn0opY1988 For This Useful Post:

    damnzit (11-10-2015)

  11. #9
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused
    Quote Originally Posted by Sn0opY1988 View Post
    so damnzit ur on UC too nice to see u like my thread

    For ppl where it doesnt work try fullscreen windowed

    for better results use a TERMAL on ur sniper

    IT works 100% with sense 60
    im on there also lol but do we have to use snipers?

  12. #10
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    no u can use all weapons but because its no mom trigger bot u should better us a 1 shot weapon to get the kill

  13. #11
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused
    Can you pm me your skype so you can help me for some reason its not working.

  14. #12
    yigo's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Hot
    Nvm. Got it working.
    Any tips on making it not shoot anything that moves, like snow in some maps.
    Last edited by yigo; 11-10-2015 at 08:47 PM.

  15. #13
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused
    Quote Originally Posted by yigo View Post
    Nvm. Got it working.
    Any tips on making it not shoot anything that moves, like snow in some maps.
    How did you get it to work?

  16. #14
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    play around with sense, use Thermal

    - its a shitty color aimbot :/ it shoots everything that muses but its the best i found so far, there are much worse out there

  17. #15
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused
    Quote Originally Posted by Sn0opY1988 View Post
    play around with sense, use Thermal

    - It's a shitty color aimbot :/ it shoots everything that moves but its the best I found so far, there are much worse out there
    What if we do not have thermal.

Page 1 of 3 123 LastLast

Similar Threads

  1. AHK triggerbot
    By _LoLo99_ in forum Counter-Strike 2 Coding & Resources
    Replies: 0
    Last Post: 10-12-2015, 07:45 AM
  2. [Release] Pean's AHK "Triggerbot" aka Colorbot extension
    By pean153 in forum Counter-Strike 2 Hacks
    Replies: 107
    Last Post: 06-15-2015, 09:11 AM
  3. [Release] [AHK]Static TriggerBot
    By addmeonsteam in forum Counter-Strike 2 Coding & Resources
    Replies: 12
    Last Post: 05-26-2015, 07:13 AM
  4. AHK CS:GO Triggerbot
    By AlcatrazCGP in forum Counter-Strike 2 Discussions
    Replies: 5
    Last Post: 01-24-2015, 05:02 PM
  5. AHK Triggerbot - READ
    By MidnightJester in forum Counter-Strike 2 Discussions
    Replies: 0
    Last Post: 09-26-2014, 02:38 AM