Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 36
  1. #16
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    i use thermal = sense 60
    and without 40
    it worked quite well i now have thermal on all snipers with the help of this tool (nuketown aim the long ways ez)

  2. #17
    hejsh1's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Quote Originally Posted by Sn0opY1988 View Post
    i use thermal = sense 60
    and without 40
    it worked quite well i now have thermal on all snipers with the help of this tool (nuketown aim the long ways ez)
    Hey i don't get it to work at all i changed Xbutton both to Lmousebutton too and i have a sense on 40 and i kill insert for triggerbot on but nothing seems to happen at all? How to fix it? : d

  3. #18
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    Quote Originally Posted by hejsh1 View Post
    Hey i don't get it to work at all i changed Xbutton both to Lmousebutton too and i have a sense on 40 and i kill insert for triggerbot on but nothing seems to happen at all? How to fix it? : d
    i dont know if Lmousebutton is a vakid key ?? xButton 1 or whatever it says in code alreday is the left sided thump button

  4. #19
    Kingpin's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    cloud 9
    Posts
    2,978
    Reputation
    1028
    Thanks
    876
    My Mood
    Amused
    Just a general question here. How safe are AHK hacks against TAC?
    [IMG]https://thumbs.gfyca*****m/LikableImmediateAcornweevil-size_restricted.gif[/IMG]

  5. #20
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused
    Can someone just reupload something that works like with correct sense not saying this doesn't work it's just the fact that I can not get it to work.
    Last edited by pwnage37; 11-11-2015 at 02:06 PM.

  6. #21
    dustyroo's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    123
    Reputation
    10
    Thanks
    130
    My Mood
    Cheerful
    Can't get it to work at all anyone help?

  7. #22
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    can u describe your problems does it shoot random or just doent do anything at all?

  8. #23
    Gratin's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    182
    Reputation
    21
    Thanks
    501
    My Mood
    Inspired
    Mine just won't do anything. I can't get it to shoot at all or do anything in general.
     

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

  9. #24
    Sn0opY1988's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    7
    i just tested it again and i works quite nice for me even in fullscreen mode

    start BO3, start script > press insert > hold mouse 4/5 = Shoots on color change made 3 ez kills right now

    sens:=40
    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)
    }
    }
    }

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

    Xodius (11-12-2015)

  11. #25
    Gratin's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    182
    Reputation
    21
    Thanks
    501
    My Mood
    Inspired
    what does "hold mouse 4/5 =" mean?

    - - - Updated - - -

    Quote Originally Posted by Sn0opY1988 View Post
    i just tested it again and i works quite nice for me even in fullscreen mode

    start BO3, start script > press insert > hold mouse 4/5 = Shoots on color change made 3 ez kills right now

    sens:=40
    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)
    }
    }
    }
    forgot quote

    - - - Updated - - -

    Such a fudging facepalm. I didn't realize you were meant to hold down another button. fml sorry guys
     

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

  12. #26
    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
    I just tested it again and I works quite nice for me even in fullscreen mode

    start BO3, start script > press insert > hold mouse 4/5 = Shoots on the color change made 3 easy kills right now

    sens:=40
    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)
    }
    }
    }
    Is it okay if we change the mouse button to something on our keyboard because what if we do not have the 4/5 buttons.

  13. #27
    NomadNope's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by pwnage37 View Post
    Is it okay if we change the mouse button to something on our keyboard because what if we do not have the 4/5 buttons.
    I just Google searched "ahk keyboard keys" and found a list of all the names of the mouse buttons and keyboard keys. Just replace the XButton1 with whatever you want.

  14. #28
    GrouL's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    sweden
    Posts
    105
    Reputation
    10
    Thanks
    13
    My Mood
    Bored
    Quote Originally Posted by wyvern1990 View Post
    I dient write or test it, but xbutton should be Lmousebutton( if not playing with controller)
    Still not working

  15. #29
    NomadNope's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by GrouL View Post
    Still not working
    Well, how this script works is that, after pressing Insert to activate it, you have to hold down whatever key you assign to it, and while that key is held down it will fire when there's a color change or whatever. Lmousebutton is not a valid key. If you want it to be the left mouse button, it's just LButton. XButton1 is mouse button 4.

  16. #30
    loxymsr's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    is this highly bannable?

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