Page 1 of 11 123 ... LastLast
Results 1 to 15 of 155
  1. #1
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical

    Wink [AutoHotKey] Auto-Fire for Pistols/Bows/AutoSniper NOT ONLY FOR CSGO! Can't be detect

    Hello everybody i decided to share a AHK script!

    This script is not only for CS:GO It works in BF3 and even in rust it is basically an AUTO-FIRE script. It can be used for Pistols/Bows(Not in every game)/And of course AutoSniper.

    VAC Status: Can never be detected! Does not inject a DLL does not change Bytes does not change any game files its a allowed program in the VAC ALLOWED PROGRAM LIST only PUNKBUSTER CAN *KICK* you for it but there is a FIX for it just search in google! I only made this script using notepad. nothing else than notepad so yea it does not inject or anything it only commands the keyboard and the mouse.

    Overwatch warning: Remember don't get caught by overwatch. Overwatch is basicly people spectating u after match or there friends spectating a few rounds before they may notice it. try turning on and off every round and not rapidly fire all the time.

    anyways what it does is that when u hold the mouse key it keeps rapidly shooting.


    Requirements:
    AutoHotkey


    Installation:
    After u installed Autohotkey from https://www.autohotkey.com create a new AHK file in desktop and name it whatever u want it cant be detected never so it doesn't really matter anyways after u named it open it and copy and paste the script below Save it and to run it just open the file after you saved it, to turn On and Off the script press F6.


    Here is the script:

     

    #NoEnv
    #SingleInstance force
    SendMode Input

    ScriptActive = 1

    FixAmount = 0.00000000000000000001


    RecoilFix(amount)
    {
    DllCall("mouse_event",uint,1,int,x,int,amount,uint ,0,int,0)
    }


    IfWinActive, Call of Duty 4
    {
    ~Lbutton::
    If ScriptActive = 1
    {
    RecoilFix(FixAmount)
    Loop
    {
    GetKeyState, state, Lbutton, P
    if state=U
    break
    Sendinput {Click down}
    Sleep 35
    Sendinput {Click up}
    Sleep 35
    RecoilFix(FixAmount)
    }
    }
    return


    ;Pauses AutoHotKey Script.

    ~F6::
    If ScriptActive = 1
    {
    ScriptActive = 0
    SoundBeep, 400, 400
    }
    else if ScriptActive = 0
    {
    ScriptActive = 1
    SoundBeep, 1000, 100
    SoundBeep, 1000, 100
    }
    return


    ~NumpadAdd::
    ++FixAmount
    SoundBeep, 700, 100
    SoundBeep, 700, 100
    clipboard = %FixAmount%
    return


    ~NumpadSub::
    --FixAmount
    SoundBeep, 700, 100
    clipboard = %FixAmount%
    return

    ~NumpadDiv::
    FixAmount-=0.1
    SoundBeep, 600, 100
    clipboard = %FixAmount%
    return

    ~NumpadMult::
    FixAmount+=0.1
    SoundBeep, 600, 100
    SoundBeep, 600, 100
    clipboard = %FixAmount%
    return
    }

    ;M9 = FixAmount 1
    ;G3 = FixAmount 0.700000


    Video:




    This is my first post in here about something original so im quite excited what you will guys think ^^!

    Have fun! will never be patched/detected its AHK you can't be banned for it!
    Last edited by HillarySupporter; 08-07-2014 at 09:50 PM. Reason: Just to make it a bit better to see and understand what to read more :P.

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

    5FTYFIVE (04-11-2015),amir_m41 (07-03-2017),Caden131313 (03-05-2015),DishonoredPie (10-02-2014),Miratro (12-23-2014),Mutations (08-12-2014),porkypig (09-15-2014),rankfaun1 (12-06-2014),Taylor Suewift (08-07-2014),unholy1096 (10-02-2014),zki4 (08-09-2014),Zleo22 (09-13-2019)

  3. #2
    danielzi's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    Nice :P
    I tested it.......

  4. The Following User Says Thank You to danielzi For This Useful Post:

    HillarySupporter (08-07-2014)

  5. #3
    OwnedForcE's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    3
    I'm new here, so this is kind of a triggerbot or just a key spammer?

  6. The Following User Says Thank You to OwnedForcE For This Useful Post:

    apple26 (10-06-2014)

  7. #4
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical
    Quote Originally Posted by OwnedForcE View Post
    I'm new here, so this is kind of a triggerbot or just a key spammer?
    it just holds the mouse button. thats it. it is only in control on the mouse. how is this a triggerbot how can u make from a notepad script a triggerbot? -.-

  8. #5
    Taylor Suewift's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    462
    Reputation
    10
    Thanks
    921
    Of course it can't be detected its a .ahk file, But anyway great release

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

    HillarySupporter (08-08-2014)

  10. #6
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical
    Quote Originally Posted by NinjaCodeX View Post
    Of course it can't be detected its a .ahk file, But anyway great release
    at first i did not know. but i know that u can get overwatch banned if u make it too obvious to players. but yeah.

  11. #7
    Taylor Suewift's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    462
    Reputation
    10
    Thanks
    921
    Quote Originally Posted by SexyBigMaMa32121 View Post
    at first i did not know. but i know that u can get overwatch banned if u make it too obvious to players. but yeah.
    I've used bhop, norecoil & many other ahk's like crazy in comp for about 1-2 years and i am not banned

  12. #8
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical
    Quote Originally Posted by NinjaCodeX View Post
    I've used bhop, norecoil & many other ahk's like crazy in comp for about 1-2 years and i am not banned
    You're a good hider.

  13. #9
    Mijisu's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    4
    My Mood
    Angelic
    So do I just copy this script over to the one I use right now?
    Which ones are for CS:GO only so I remove them and don't have too many crap on my script right now?

  14. #10
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical
    Quote Originally Posted by Mijisu View Post
    So do I just copy this script over to the one I use right now?
    Which ones are for CS:GO only so I remove them and don't have too many crap on my script right now?
    U can run a couple of scripts u just need to open a new AHK file and copy and paste the script thats it F6 to turn on and off the script.

  15. #11
    agraphha's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    7
    My Mood
    Amazed
    It doesn't auto-fire* you need to press mouse one then hold the mouse to the freaking scripts shot them lol wTF is this man !?

  16. #12
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical
    Quote Originally Posted by agraphha View Post
    It doesn't auto-fire* you need to press mouse one then hold the mouse to the freaking scripts shot them lol wTF is this man !?
    u just hold the mouse button and it auto-fires thats it. thats all it does. i can show u what it does in the game called Rust as well.

  17. The Following User Says Thank You to HillarySupporter For This Useful Post:

    Arturiana (09-08-2014)

  18. #13
    aradf's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    thx, btw can anyone direct me to a norecoil? autoshoot+norecoil+esp= ultimate supa dupa hax0r

  19. #14
    HillarySupporter's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1,143
    Reputation
    13
    Thanks
    3,847
    My Mood
    Cynical
    Quote Originally Posted by aradf View Post
    thx, btw can anyone direct me to a norecoil? autoshoot+norecoil+esp= ultimate supa dupa hax0r
    NP have fun using a "Helpful Tool" i dont think there is a esp for autohotkey though. check out other people hacks but remember check out only the ones that dont get detected atleast for about a week or 2

  20. The Following User Says Thank You to HillarySupporter For This Useful Post:

    Arturiana (09-08-2014)

  21. #15
    kikolopman123's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    i can't understant... It's triggerbot?

Page 1 of 11 123 ... LastLast

Similar Threads

  1. Replies: 3
    Last Post: 08-26-2013, 08:46 AM
  2. guys help me for this look 1 time only for me =)
    By serdar7 in forum User Services
    Replies: 0
    Last Post: 08-26-2013, 08:24 AM
  3. [Release] Auto pistol (fire dualies/pistol rapidly)
    By Boxes. in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 8
    Last Post: 02-21-2013, 11:56 AM
  4. [Help] Rapid fire not working for me.. can u guys explain?
    By danygold98 in forum Blackshot Hacks & Cheats
    Replies: 14
    Last Post: 11-24-2012, 10:41 AM
  5. [Help] Rapid Fire (not Working for me)
    By Hazique911 in forum Blackshot Hacks & Cheats
    Replies: 14
    Last Post: 11-20-2012, 04:22 PM

Tags for this Thread