-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from tmck-code/update-csgo-cfg
Update csgo cfg
- Loading branch information
Showing
4 changed files
with
138 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// turnbinds | ||
bind mouse1 +left; // turn left with left mouse click | ||
bind mouse2 +right; // turn right with right mouse click | ||
|
||
// stage teleports | ||
bind t "say !r"; // teleport to start of map | ||
bind u "say !rs"; // teleport to start of stage | ||
|
||
// saveloc (bind by default) | ||
exec surf_saveloc_on.cfg; | ||
alias saveloc_on "alias saveloc saveloc_off; exec surf_saveloc_on.cfg"; | ||
alias saveloc_off "alias saveloc saveloc_on; exec surf_saveloc_off.cfg"; | ||
alias saveloc "saveloc_off"; | ||
// toggle saveloc | ||
bind . "saveloc"; | ||
|
||
alias "hud_toggle" "hud_off" | ||
alias "hud_off" "cl_draw_only_deathnotices 1; alias hud_toggle hud_on"; | ||
alias "hud_on" "cl_draw_only_deathnotices 0; alias hud_toggle hud_off"; | ||
bind l "hud_toggle" | ||
|
||
// info/debug commands | ||
bind 5 "say !tier" // show current map info | ||
bind 6 "say !pb" // show personal best time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// This file _disables_ all SurfTimer saveloc keybinds | ||
|
||
// set teleport location | ||
unbind q; | ||
// teleport to location | ||
unbind e; | ||
unbind mwheeldown; | ||
|
||
// change to previous/next teleport location | ||
unbind 1; | ||
unbind p; | ||
unbind 2; | ||
// disable back arrow key | ||
unbind s; | ||
|
||
say "saveloc disabled"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// This file contains all SurfTimer saveloc keybinds | ||
|
||
// set teleport location, play beep sound | ||
bind q "sm_saveloc ; playvol buttons\blip1 0.5"; | ||
// teleport to location | ||
bind e "sm_tele"; | ||
bind mwheeldown "sm_tele"; | ||
|
||
// change to previous/next teleport location | ||
bind 1 "sm_teleprev"; | ||
bind p "sm_teleprev"; | ||
bind 2 "sm_telenext"; | ||
|
||
// enable back arrow key | ||
bind s +back; | ||
|
||
say "saveloc enabled"; |