Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed

    Thumbs up AHK BHOP & Rapidfire All-In-One [Code]

    VAC STATUS: Undetected
    This is a AHK (auto hot key) Script and they are not Vac Banable. However you may be convicted of overwatch if you abuse this too much!

    This is my first real contribution to MPGH Yay me!
    This is a AHK Script to be used on ANY source game but it was designed by me for use on CS:Go.
    If you do edit my script please give me credit!

    Code:
    ;Snow's Bhop And Rapidfire For CS:GO -- Posted on MPGH
    ;This Is a Script and Not A Hack Therefore never detected by VAC However you may be Overwatch banned. Use with Caution
    
    ;Pressing F11 Will Close the script.
    ;Pressing Home Will Toggle the B-Hop On/Off.
    ;Pressing Page Up Will Toggle the Rapid-fire On/Off.
    
    
    Home:: Hotkey, *MButton, Toggle
    Pgup:: Hotkey, *LButton, Toggle
    
    ;Exit
    F11::
    ExitApp
    
    ;Rapid-fire
    *LButton:: 
    Loop 
    { 
    SetMouseDelay 20 
    Click 
    If (GetKeyState("LButton","P")=0) 
    Break 
    }  
    return
    
    ;BHOP
    *MButton::
    Loop
    {
    GetKeyState,state,MButton,P
    if state = U
    break
    
    Send,{space}
    Sleep,20
    }
    return
    For Bhop To Work you must have Jump in Cs:Go or the source game bound to the space bar!

    Hotkeys
    Pressing F11 Will Close the script.
    Pressing Home Will Toggle the B-Hop On/Off.
    Pressing Page Up Will Toggle the Rapid-fire On/Off.

    Bugs
    There is one bug i have found with my script and it is that if you are trying to do both the bhop and rapidfire at same time it will not work.
    You may only do one thing at a time. So bhop or shoot.
    If anyone finds out why this is then please send me a message on how you fixed it and a new update of this will come out with you as a co helper!
    Last edited by snowboy11; 02-22-2015 at 04:42 AM. Reason: Uploading just the code

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

    kingrune45 (02-21-2015),lukasporomaa (02-21-2015),OrbitalZ (02-22-2015),Pr0jamin (02-21-2015)

  3. #2
    Color's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    19,896
    Reputation
    2588
    Thanks
    7,864
    My Mood
    Lurking
    . @snowboy11 Puts spaces in the links.

    Member Since 8/05/2012
    Editor 4/04/13 - 4/21/13
    Middleman 7/14/13 - 11/4/13

    Battlefield Minion 6/13/14-3/20/15
    Steam Minion 7/16/14-3/20/15

    Minion+ 10/1/14-3/20/15
    M.A.T. Minion 10/19/14-3/20/15
    ROTMG Minion 1/14/15-3/20/15

    Donator Since 2/26/15 (Thanks @Cursed!)
    Steam Minion 5/9/15 - 11/5/15
    OSFPS Minion 9/15/15 - 11/5/15


  4. #3
    PvPGod_'s Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    United States.
    Posts
    119
    Reputation
    10
    Thanks
    6
    My Mood
    Amused
    I feel like you should just give the script, no need for a download :P

  5. #4
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    True But some people just want the exe format of the Script and are too dumb to know how to use AHK.
    So by me doing a download it gives both the script and the exe format. Also this was on the normal release page originally but then got moved to this forum so it was intended for download.

    - - - Updated - - -

    Links added

  6. #5
    Scorpio666's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    Earth
    Posts
    434
    Reputation
    18
    Thanks
    158
    Please give script

  7. #6
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    I have seen how much hastle it is for a member of staff to open a ahk in a rar -_-
    So i have changed the thread to include the code of the ahk script.

  8. #7
    lolekxxxx's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by snowboy11 View Post
    VAC STATUS: Undetected
    This is a AHK (auto hot key) Script and they are not Vac Banable. However you may be convicted of overwatch if you abuse this too much!

    This is my first real contribution to MPGH Yay me!
    This is a AHK Script to be used on ANY source game but it was designed by me for use on CS:Go.
    If you do edit my script please give me credit!

    Code:
    ;Snow's Bhop And Rapidfire For CS:GO -- Posted on MPGH
    ;This Is a Script and Not A Hack Therefore never detected by VAC However you may be Overwatch banned. Use with Caution
    
    ;Pressing F11 Will Close the script.
    ;Pressing Home Will Toggle the B-Hop On/Off.
    ;Pressing Page Up Will Toggle the Rapid-fire On/Off.
    
    
    Home:: Hotkey, *MButton, Toggle
    Pgup:: Hotkey, *LButton, Toggle
    
    ;Exit
    F11::
    ExitApp
    
    ;Rapid-fire
    *LButton:: 
    Loop 
    { 
    SetMouseDelay 20 
    Click 
    If (GetKeyState("LButton","P")=0) 
    Break 
    }  
    return
    
    ;BHOP
    *MButton::
    Loop
    {
    GetKeyState,state,MButton,P
    if state = U
    break
    
    Send,{space}
    Sleep,20
    }
    return
    For Bhop To Work you must have Jump in Cs:Go or the source game bound to the space bar!

    Hotkeys
    Pressing F11 Will Close the script.
    Pressing Home Will Toggle the B-Hop On/Off.
    Pressing Page Up Will Toggle the Rapid-fire On/Off.

    Bugs
    There is one bug i have found with my script and it is that if you are trying to do both the bhop and rapidfire at same time it will not work.
    You may only do one thing at a time. So bhop or shoot.
    If anyone finds out why this is then please send me a message on how you fixed it and a new update of this will come out with you as a co helper!
    the bhop doesnt work for me, i dont know why...

  9. #8
    BolekPL's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by lolekxxxx View Post
    the bhop doesnt work for me, i dont know why...
    For me too dosen't work

  10. #9
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    The only reason the bhop wouldn't work is if you havn't got the bind set correctly.
    In the controls. Set jump to space.
    But to bhop you must hold in middle mouse. Not scroll.

  11. #10
    Purse's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    csgo.exe
    Posts
    32
    Reputation
    10
    Thanks
    639
    My Mood
    Daring
    Looks like the toggle function I posted 4-6 months ago.

    Mine.
    Code:
    Numpad0:: Hotkey, *~$Space, Toggle
    Numpad1:: Hotkey, *~$LButton, Toggle
    
    End::
    ExitApp
    Yours.
    Code:
    Home:: Hotkey, *MButton, Toggle
    Pgup:: Hotkey, *LButton, Toggle
    
    ;Exit
    F11::
    ExitApp
    If you received even the smallest amount of code from anyone please credit them.
    Just trying to support good ethics.

    EDIT: This is even before the script megathread.
    Last edited by Purse; 02-22-2015 at 11:45 PM.

  12. #11
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    I used the toggle and exitapp from a script i had found in the past but couldn't remember what it was.
    I originally made these scripts individually and added the toggle as a extra. Then merged the two scripts together.
    Can you PM me a link to your thread so i can confirm you made the toggle thing. Then i can credit you.

    EDIT: Also when i made this script i had never visited the coding and resource section. And i had never gone onto the megathread. I even posted this originally as a release with exe format on the CS:GO page.
    Also if your toggle thing was posted on this Coding and resource section then i think others have stole your code because as i said i had never been on this section till when my post was moved, I still have no idea where i found the code though.
    Last edited by snowboy11; 02-23-2015 at 08:39 AM.

  13. #12
    djdeivis10's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    No vac ban?

  14. #13
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    Quote Originally Posted by djdeivis10 View Post
    No vac ban?
    Of course Not. This does not inject anything into the game or edit memory So its fine
    As long as you know how to use AHK your good to go.

    However if you abuse the rapidfire too much and someone reports you, you may be overwatch banned. But Never VAC.

  15. #14
    Purse's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    csgo.exe
    Posts
    32
    Reputation
    10
    Thanks
    639
    My Mood
    Daring
    Quote Originally Posted by snowboy11 View Post
    I used the toggle and exitapp from a script i had found in the past but couldn't remember what it was.
    I originally made these scripts individually and added the toggle as a extra. Then merged the two scripts together.
    Can you PM me a link to your thread so i can confirm you made the toggle thing. Then i can credit you.

    EDIT: Also when i made this script i had never visited the coding and resource section. And i had never gone onto the megathread. I even posted this originally as a release with exe format on the CS:GO page.
    Also if your toggle thing was posted on this Coding and resource section then i think others have stole your code because as i said i had never been on this section till when my post was moved, I still have no idea where i found the code though.
    The script I posted was in the CS:GO Hacks section.
    PMing you mentioned post.
    Last edited by Purse; 02-23-2015 at 03:30 PM.

  16. #15
    snowboy11's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    I would add you to the post for your credits but i cant edit the post anymore and i can private message people or staff to ask them

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] All-In-One Auto Typer, Spammer, Macro (Lobby & In Game) WITH HOTKEYS
    By dadirty in forum Combat Arms Discussions
    Replies: 15
    Last Post: 09-11-2009, 03:21 AM
  2. All in one macro for all K-style moves.
    By kills999 in forum Gunz Hacks
    Replies: 9
    Last Post: 04-17-2008, 08:18 PM
  3. all in one
    By kmphantom in forum Trade Accounts/Keys/Items
    Replies: 0
    Last Post: 10-23-2007, 10:21 AM
  4. All hacks all-in-one
    By nasir91 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 02-20-2007, 11:11 AM

Tags for this Thread