Lots of new features.

Includes a rocket jump script for the Soldier, a music player, a new font
for the developer console and more.
This commit is contained in:
Lyrositor
2014-02-21 23:05:08 +01:00
parent 0ed094eac3
commit 7f5acc2c46
33 changed files with 519 additions and 13 deletions

View File

@@ -1,3 +1,17 @@
// Soldier Scripting
exec scripts/reset.cfg
exec scripts/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 rocket_on "bind MOUSE3 +rocket_jump"
alias rocket_off "bind MOUSE3 +attack3"
SOLDIER_ROCKET_JUMP