20 lines
665 B
INI
20 lines
665 B
INI
// Soldier Scripting
|
|
|
|
exec _reset.cfg
|
|
|
|
// Soldier Music
|
|
// Plays "The Art of War" on first class load.
|
|
soldier_music
|
|
|
|
|
|
// Rocket Jump
|
|
// A simple rocket jump script. Doesn't achieve the best height, since it
|
|
// doesn't use any wait commands, but it still provides a decent jump.
|
|
alias +rocket_jump "+jump; +duck; +attack"
|
|
alias -rocket_jump "-jump; -duck; -attack"
|
|
alias rj_on "bind MOUSE2 +rocket_jump; rocket_jump_on_text; alias toggle_rj rj_off"
|
|
alias rj_off "bind MOUSE2 +attack2; rocket_jump_off_text; alias toggle_rj rj_on"
|
|
alias toggle_rj rj_on
|
|
alias rocket_on "bind R toggle_rj; cl_autoreload 1; rj_off"
|
|
alias rocket_off "bind R +reload"
|
|
SOLDIER_ROCKET_JUMP |