├── .gitignore ├── README.md ├── cfg ├── _lang.cfg ├── _reset.cfg ├── _settings.cfg ├── autoexec.cfg ├── demoman.cfg ├── engineer.cfg ├── heavyweapons.cfg ├── medic.cfg ├── pyro.cfg ├── scout.cfg ├── sniper.cfg ├── soldier.cfg └── spy.cfg └── resource ├── closecaption_tf2-scripts.dat └── closecaption_tf2-scripts.txt /.gitignore: -------------------------------------------------------------------------------- 1 | sound/* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /cfg/_lang.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/_lang.cfg -------------------------------------------------------------------------------- /cfg/_reset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/_reset.cfg -------------------------------------------------------------------------------- /cfg/_settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/_settings.cfg -------------------------------------------------------------------------------- /cfg/autoexec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/autoexec.cfg -------------------------------------------------------------------------------- /cfg/demoman.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/demoman.cfg -------------------------------------------------------------------------------- /cfg/engineer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/engineer.cfg -------------------------------------------------------------------------------- /cfg/heavyweapons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/heavyweapons.cfg -------------------------------------------------------------------------------- /cfg/medic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/medic.cfg -------------------------------------------------------------------------------- /cfg/pyro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/pyro.cfg -------------------------------------------------------------------------------- /cfg/scout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/scout.cfg -------------------------------------------------------------------------------- /cfg/sniper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/sniper.cfg -------------------------------------------------------------------------------- /cfg/soldier.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/soldier.cfg -------------------------------------------------------------------------------- /cfg/spy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/cfg/spy.cfg -------------------------------------------------------------------------------- /resource/closecaption_tf2-scripts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/resource/closecaption_tf2-scripts.dat -------------------------------------------------------------------------------- /resource/closecaption_tf2-scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrositor/TF2-Scripts/HEAD/resource/closecaption_tf2-scripts.txt --------------------------------------------------------------------------------