Results 1 to 9 of 9
  1. #1
    lucasxdr100's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0

    Cool Bhop Script 128 tick, (uses mouse wheel to jump!)

    So .. I've been testing some ways to make bunnyhop in 128 tick, and the most consistent way was with scrollwheel, but you need UNBIND SPACE BAR. I'm sorry for the junk script, but it's usable.


    Press F11 to start/pause the script, and hold space to bhop around!

    code:
    ------------------------------------------------



    F11:: Hotkey, *~$Space, Toggle
    End::
    ExitApp

    *~$Space::
    Sleep 0
    Loop
    {
    GetKeyState, SpaceState, Space, P
    If SpaceState = U
    break
    Sleep 1
    Send, {Blind}{wheelup}
    }
    Return
    Last edited by lucasxdr100; 06-18-2017 at 02:47 PM.

  2. #2
    Ally's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Location
       ♥
    Posts
    8,697
    Reputation
    1610
    Thanks
    8,499
    My Mood
    Angelic
    This is already public code you just changed the key bindings, please try again

    Premium Member 22/4/16
    Steam Minion 22/12/2017
    OFPS Minion 5/2/2019
    MMO Minion 5/2/2019
    Minion+ 5/2/2019
    Mod 8/11/2020
    Retired 3/10/2022
    22 / Dec 7, 2001

  3. #3
    delete741514's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    I need a mouse driver plug-in to play the game, hoping to find an able hacker to negotiate the price。

  4. #4
    lucasxdr100's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    I know, I did not create this code, I just want to show that it is possible to consistently make a bunnyhop at 128 tick if using mousewheel instead of space. I just want to spread the word, I do not create scripts! =D

  5. #5
    halbGefressen's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    95
    Quote Originally Posted by lucasxdr100 View Post
    I know, I did not create this code, I just want to show that it is possible to consistently make a bunnyhop at 128 tick if using mousewheel instead of space. I just want to spread the word, I do not create scripts! =D
    Obviously you don't know shit about the Source Engine. It doesn't matter what key you use, but how fast you can spam the button with a script.
    If you want a fast bhop script, type in console
    Code:
     bind "<insert any key you don't ever use>" "+jump"
    . Then you make a new AHK script and make it spam <key you don't ever use> as fast as possible.
    Example:
    Code:
    loop
    {
    GetKeyState, bhop, XButton2
    if bhop = D
    {
    Send, {l}
    Sleep, 1
    }
    }
    You can't make it spam faster because CSGO wouldn't register that the key is going up again so it holds L all time, having the same effect as holding Space without a script running: You jump once and after that you don't unless you release that key and press it again.

    Before posting any rubbish, inform yourself properly. This keeps other users and yourself from making mistakes. Thank you!

  6. #6
    archerhush's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by halbGefressen View Post
    Obviously you don't know shit about the Source Engine. It doesn't matter what key you use, but how fast you can spam the button with a script.
    If you want a fast bhop script, type in console
    Code:
     bind "<insert any key you don't ever use>" "+jump"
    . Then you make a new AHK script and make it spam <key you don't ever use> as fast as possible.
    Example:
    Code:
    loop
    {
    GetKeyState, bhop, XButton2
    if bhop = D
    {
    Send, {l}
    Sleep, 1
    }
    }
    You can't make it spam faster because CSGO wouldn't register that the key is going up again so it holds L all time, having the same effect as holding Space without a script running: You jump once and after that you don't unless you release that key and press it again.

    Before posting any rubbish, inform yourself properly. This keeps other users and yourself from making mistakes. Thank you!
    Take a chamomile ma friend

  7. #7
    Ally's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Location
       ♥
    Posts
    8,697
    Reputation
    1610
    Thanks
    8,499
    My Mood
    Angelic
    Quote Originally Posted by halbGefressen View Post
    Obviously you don't know shit about the Source Engine. It doesn't matter what key you use, but how fast you can spam the button with a script.
    If you want a fast bhop script, type in console
    Code:
     bind "<insert any key you don't ever use>" "+jump"
    . Then you make a new AHK script and make it spam <key you don't ever use> as fast as possible.
    Example:
    Code:
    loop
    {
    GetKeyState, bhop, XButton2
    if bhop = D
    {
    Send, {l}
    Sleep, 1
    }
    }
    You can't make it spam faster because CSGO wouldn't register that the key is going up again so it holds L all time, having the same effect as holding Space without a script running: You jump once and after that you don't unless you release that key and press it again.

    Before posting any rubbish, inform yourself properly. This keeps other users and yourself from making mistakes. Thank you!


    Code:
    Send {space down}{space up}
    or
    Send {space down}
    sleep 0
    Send {space up}

    Premium Member 22/4/16
    Steam Minion 22/12/2017
    OFPS Minion 5/2/2019
    MMO Minion 5/2/2019
    Minion+ 5/2/2019
    Mod 8/11/2020
    Retired 3/10/2022
    22 / Dec 7, 2001

  8. #8
    lucasxdr100's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Sorry friend and the whole community of scripts, but by my tests is more effective than just spam the spacebar with delays. In fact, I propose a challenge. You know that in 64 tick it is possible to make bunnyhop consistently with scritps if strafes correctly, now show me a script that does the same in 128 tick

  9. #9
    PsyChoCl0wN's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    40
    Thanks bro!

Similar Threads

  1. [Solved] What kind of Bhop scripts can be used in Bhop servers?
    By iclaris in forum Counter-Strike 2 Help
    Replies: 2
    Last Post: 08-17-2016, 11:57 PM
  2. [Help] Mouse wheel click bhop script?
    By Trixualz in forum Counter-Strike 2 Coding & Resources
    Replies: 3
    Last Post: 09-11-2015, 04:21 PM
  3. [Solved] Any bhop scripts available to use on Mac?
    By SHFU in forum Counter-Strike 2 Help
    Replies: 1
    Last Post: 05-01-2015, 10:24 PM
  4. [Help] I was just wondering is there any way to make a bhop script dll using c++?
    By RabidRunner in forum Garry's Mod Discussions & Help
    Replies: 12
    Last Post: 12-27-2014, 03:53 AM
  5. anyone got any bhop scripts i could use for a bit that isnt detected? :)
    By winterwizardgaming in forum Counter-Strike 2 Discussions
    Replies: 2
    Last Post: 09-20-2014, 08:39 PM