BunnyHop Toggle Script
I just wanted to share my customised script since I've searched around and I've yet to find one like this (on GameBanana). Well, i found one similar and made it different/more advanced.
Summary of this script:
I've always wanted to bunnyhop on CSS and GMOD but it's always annoyed me that setting mwheelup/down to jump and other things will stop me from changing weapons etc. So I made this script so you can toggle between binds for default (or combat) and bhop with a single press of a button.
When turned ON:
-mwheeldown and mwheelup will be binded to jump.
-Q will be binded to +left (for pre-speeding)
-A speed counter will appear at the top right (cl_showpos)
-Max FPS will be set to 35.3
When turned OFF:
-mwheeldown will be binded to 'invprev' (weapon or inventory scrolling/navigation)
-mwheelup will be binded to 'invnext' (see above)
-Q will be binded to +menu
-Showpos will be turned OFF (0)
-Max FPS will be set to 200.
Feel free to modify the binds and/or numbers to your liking e.g. max fps.
AFAIK, this works for all Source Games but i've only tried it on CSS and Garry's Mod.
How to use the script:
1. Open Notepad.
2. Copy and paste the script.
3. Save as autoexec.cfg (Make sure you do not make it .txt files and change it to ALL FILES)
4. Place it the .cfg into: Steam/steamapps/[username]/[Game]/[Game]/cfg
For example: Steam/steamapps/FangedBeast/garrysmod/garrysmod/cfg
When in-game, type into console (`): exec autoexec and/or exec autoexec.cfg
Turn ON/OFF button: Home
Feel free to press the thanks button ;P
---------- Post added at 04:35 PM ---------- Previous post was at 03:07 PM ----------
I've discovered one problem, the FPS toggle doesn't work. Any help?
Summary of this script:
I've always wanted to bunnyhop on CSS and GMOD but it's always annoyed me that setting mwheelup/down to jump and other things will stop me from changing weapons etc. So I made this script so you can toggle between binds for default (or combat) and bhop with a single press of a button.
Code:
// THE SCRIPT bind home "bhop" alias bhop "bhop1; bhop2; bhopecho" alias bhop1 "bind mwheelup +jump; bind mwheeldown +jump;bind q +left;cl_showpos 1;fps_max 35.3" alias bhop2 "bind home bhop3" alias bhop3 "bhop4; bhop5; bhopecho2" alias bhop4 "bind mwheelup invprev; bind mwheeldown invnext;bind q +menu;cl_showpos 0;fps_max 200" alias bhop5 "bind home bhop" alias bhopecho "echo Mouse wheel + FPS ready for bunnyhopping! - Script ON" alias bhopecho2 "echo Mouse wheel ready for weapon changes - Script OFF"
-mwheeldown and mwheelup will be binded to jump.
-Q will be binded to +left (for pre-speeding)
-A speed counter will appear at the top right (cl_showpos)
-Max FPS will be set to 35.3
When turned OFF:
-mwheeldown will be binded to 'invprev' (weapon or inventory scrolling/navigation)
-mwheelup will be binded to 'invnext' (see above)
-Q will be binded to +menu
-Showpos will be turned OFF (0)
-Max FPS will be set to 200.
Feel free to modify the binds and/or numbers to your liking e.g. max fps.
AFAIK, this works for all Source Games but i've only tried it on CSS and Garry's Mod.
How to use the script:
1. Open Notepad.
2. Copy and paste the script.
3. Save as autoexec.cfg (Make sure you do not make it .txt files and change it to ALL FILES)
4. Place it the .cfg into: Steam/steamapps/[username]/[Game]/[Game]/cfg
For example: Steam/steamapps/FangedBeast/garrysmod/garrysmod/cfg
When in-game, type into console (`): exec autoexec and/or exec autoexec.cfg
Turn ON/OFF button: Home
Q&A
FAQ:
Q: What is the max FPS for?
A: To reduce/stop double-stepping
Q: What is cl_showpos?
A: It shows your speed, position, angle etc but you mainly need it to tell what speed you're bhopping at.
Q: Why do I need +left?
A: To make pre-speeding much easier
Q: What is pre-speeding?
A: The part before bhopping where you gain speed in a small area (typically in a circle motion using +left or +right)
Q: How do I bunnyhop?
A: Go on youtube and search around, I suggest searching 'how to bhop in CSS' or 'How to bhop in gmod' as an example
Q: What is the max FPS for?
A: To reduce/stop double-stepping
Q: What is cl_showpos?
A: It shows your speed, position, angle etc but you mainly need it to tell what speed you're bhopping at.
Q: Why do I need +left?
A: To make pre-speeding much easier
Q: What is pre-speeding?
A: The part before bhopping where you gain speed in a small area (typically in a circle motion using +left or +right)
Q: How do I bunnyhop?
A: Go on youtube and search around, I suggest searching 'how to bhop in CSS' or 'How to bhop in gmod' as an example
Feel free to press the thanks button ;P

---------- Post added at 04:35 PM ---------- Previous post was at 03:07 PM ----------
I've discovered one problem, the FPS toggle doesn't work. Any help?