summary refs log tree commit diff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--etc/tf/cfg/autoexec.cfg9
-rw-r--r--etc/tf/cfg/engineer.cfg1
-rw-r--r--etc/tf/cfg/scout.cfg4
-rw-r--r--etc/tf/cfg/sniper.cfg1
4 files changed, 10 insertions, 5 deletions
diff --git a/etc/tf/cfg/autoexec.cfg b/etc/tf/cfg/autoexec.cfg
index 2e274ed5..c47ed20f 100644
--- a/etc/tf/cfg/autoexec.cfg
+++ b/etc/tf/cfg/autoexec.cfg
@@ -2,9 +2,12 @@ bind = "exec autoexec"
 bind \ kill
 bind ' explode
 bind / toggle_duck
-bind 1 "slot1; sensitivity 1.7"
-bind 2 "slot2; sensitivity 1.7"
-bind 3 "slot3; sensitivity 2.5"
+alias sens1 "sensitivity 1.7"
+alias sens2 "sensitivity 1.7"
+alias sens3 "sensitivity 2.5"
+bind 1 "slot1; sens1"
+bind 2 "slot2; sens2"
+bind 3 "slot3; sens3"
 bind mouse3 "voicemenu 2 6"
 bind mouse4 "voicemenu 0 7"
 bind mouse5 "voicemenu 1 4"
diff --git a/etc/tf/cfg/engineer.cfg b/etc/tf/cfg/engineer.cfg
index 19dcabb7..c1763c74 100644
--- a/etc/tf/cfg/engineer.cfg
+++ b/etc/tf/cfg/engineer.cfg
@@ -1,2 +1,3 @@
+alias sens1 "sensitivity 1.5"
 bind mouse3 "destroy 2; build 2"
 bind mouse5 "voicemenu 2 6"
diff --git a/etc/tf/cfg/scout.cfg b/etc/tf/cfg/scout.cfg
index 5ea8f681..3e57c802 100644
--- a/etc/tf/cfg/scout.cfg
+++ b/etc/tf/cfg/scout.cfg
@@ -1,2 +1,2 @@
-bind 1 "slot1; sensitivity 1.5"
-bind 2 "slot2; sensitivity 1.5"
+alias sens1 "sensitivity 1.2"
+alias sens2 "sensitivity 1.2"
diff --git a/etc/tf/cfg/sniper.cfg b/etc/tf/cfg/sniper.cfg
new file mode 100644
index 00000000..cd1cd0b0
--- /dev/null
+++ b/etc/tf/cfg/sniper.cfg
@@ -0,0 +1 @@
+alias sens1 "sensitivity 1.5"
June McEnroe 2019-10-23Send to server if client has no needsJune McEnroe 2019-10-23Implement some amount of client connectionJune McEnroe 2019-10-23Set clients non-blockingJune McEnroe 2019-10-23Clean up state.c and factor out parsingJune McEnroe 2019-10-23Respond to pingsJune McEnroe 2019-10-23Add verbose flagJune McEnroe 2019-10-23Set NOSIGPIPE on server connectionJune McEnroe 2019-10-23Set an initial loop capJune McEnroe 2019-10-23Fix rest parsingJune McEnroe 2019-10-23Add dynamic poll listJune McEnroe 2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe 2019-10-23Clean up state somewhatJune McEnroe 2019-10-23Actually send the buffer...June McEnroe 2019-10-23Add stateJune McEnroe