Created
February 12, 2017 22:59
-
-
Save p-hennessy/6b5220b376ecc9c3879e1f6cc2e294a1 to your computer and use it in GitHub Desktop.
Sets up for practicing jumps and rollouts
This file contains hidden or 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
//Disable Timer | |
sv_cheats 1 | |
mp_tournament 1 | |
mp_tournament_restart | |
con_timestamp 0 | |
//Mimic real network latency | |
net_fakelag 25 | |
//Binds | |
bind F1 gotoPosition1 | |
bind F2 gotoPosition2 | |
bind F3 gotoPosition3 | |
bind F4 gotoPosition4 | |
bind F5 gotoPosition5 | |
bind RALT +savePosition | |
bind r "gotoPosition1" | |
//Save and load positions | |
con_logfile console.log | |
alias +savePosition "bind F1 savePosition1; bind F2 savePosition2; bind F3 savePosition3; bind F4 savePosition4; bind F5 savePosition5" | |
alias -savePosition "bind F1 gotoPosition1; bind F2 gotoPosition2; bind F3 gotoPosition3; bind F4 gotoPosition4; bind F5 gotoPosition5" | |
alias resetLogfile "con_logfile console.log" | |
alias savePosition1 "con_logfile cfg/position1; getpos; resetLogfile;" | |
alias savePosition2 "con_logfile cfg/position2; getpos; resetLogfile;" | |
alias savePosition3 "con_logfile cfg/position3; getpos; resetLogfile;" | |
alias savePosition4 "con_logfile cfg/position4; getpos; resetLogfile;" | |
alias savePosition5 "con_logfile cfg/position5; getpos; resetLogfile;" | |
alias gotoPosition1 "exec position1.log; impulse 101" | |
alias gotoPosition2 "exec position2.log; impulse 101" | |
alias gotoPosition3 "exec position3.log; impulse 101" | |
alias gotoPosition4 "exec position4.log; impulse 101" | |
alias gotoPosition5 "exec position5.log; impulse 101" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment