Created
December 11, 2022 20:28
-
-
Save moonexpr/03d6c20410a92943399b88dfbb6b8da2 to your computer and use it in GitHub Desktop.
[TF2] Easy Voice Lines (zz, zy, zx, yy, ..., zz, ...)
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
exec vc_aliases.cfg | |
// Remind: Shift Off | |
alias vc_btn_e "bind e vc_symb_needassistance_0" | |
alias vc_btn_z "bind z vc_pool_2; bind x vc_dist_agree_yes; bind c vc_dist_agree_no" | |
alias vc_btn_x "bind z vc_dist_danger_sentry; bind x vc_dist_danger_spy; bind c vc_dist_danger_incoming" | |
alias vc_btn_c "bind z vc_pool_3; bind x vc_pool_4; bind c vc_pool_1" | |
// Remind: Shift On | |
alias vc_btn_e_shift "bind e vc_symb_needassistance_1" | |
alias vc_btn_z_shift "bind z vc_rebind; bind x vc_dist_cardinal_left; bind c vc_dist_cardinal_right" | |
alias vc_btn_x_shift "bind z vc_dist_engineer_teleporter; bind x vc_dist_engineer_dispenser; bind c vc_dist_engineer_sentry" | |
alias vc_btn_c_shift "bind z vc_rebind; bind x vc_rebind; bind c vc_rebind" | |
alias vc_rebind_shift_on "bind e vc_btn_e_shift; bind z vc_btn_z_shift; bind x vc_btn_x_shift; bind c vc_btn_c_shift" | |
alias vc_rebind_shift_off "bind e vc_btn_e; bind z vc_btn_z; bind x vc_btn_x; bind c vc_btn_c" | |
alias +vc_shift_toggle "vc_rebind_shift_on; alias vc_rebind vc_rebind_shift_on" | |
alias -vc_shift_toggle "vc_rebind_shift_off; alias vc_rebind vc_rebind_shift_off" | |
alias vc_rebind vc_rebind_shift_off | |
// Rebind SHIFT et ALT | |
bind shift +vc_shift_toggle | |
bind alt vc_rebind | |
// Rebind E, Z, X, et C | |
vc_rebind |
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
// MEDIC!, Help! | |
alias vc_symb_needassistance_0 "voicemenu 0 0; +use_action_slot_item; alias vc_pool_0 vc_symb_needassistance_1; vc_rebind" | |
alias vc_symb_needassistance_1 "voicemenu 2 0; +use_action_slot_item; alias vc_pool_0 vc_symb_needassistance_0; vc_rebind" | |
alias vc_pool_0 "vc_symb_needassistance_0" | |
// Battle Cry, Go Go Go!, Move Up! | |
alias vc_symb_battlecries_0 "voicemenu 2 1; alias vc_pool_1 vc_symb_battlecries_1; vc_rebind" | |
alias vc_symb_battlecries_1 "voicemenu 0 2; alias vc_pool_1 vc_symb_battlecries_2; vc_rebind" | |
alias vc_symb_battlecries_2 "voicemenu 0 3; alias vc_pool_1 vc_symb_battlecries_0; vc_rebind" | |
alias vc_pool_1 "vc_symb_battlecries_0" | |
// Thanks!, Nice Shot, Good Job | |
alias vc_symb_gratitude_0 "voicemenu 0 1; alias vc_pool_2 vc_symb_gratitude_1; vc_rebind" | |
alias vc_symb_gratitude_1 "voicemenu 2 6; alias vc_pool_2 vc_symb_gratitude_2; vc_rebind" | |
alias vc_symb_gratitude_2 "voicemenu 2 7; alias vc_pool_2 vc_symb_gratitude_0; vc_rebind" | |
alias vc_pool_2 "vc_symb_gratitude_0" | |
// Cheers, Positive | |
alias vc_symb_pos_remark_0 "voicemenu 2 2; alias vc_pool_3 vc_symb_pos_remark_1" | |
alias vc_symb_pos_remark_1 "voicemenu 2 4; alias vc_pool_3 vc_symb_pos_remark_0" | |
// alias vc_symb_pos_remark_0 "voicemenu 2 4; vc_rebind" | |
alias vc_pool_3 "vc_symb_pos_remark_0" | |
// Jeers, Negative | |
alias vc_symb_neg_remark_0 "voicemenu 2 3; alias vc_pool_4 vc_symb_neg_remark_1; vc_rebind" | |
alias vc_symb_neg_remark_1 "voicemenu 2 5; alias vc_pool_4 vc_symb_neg_remark_0; vc_rebind" | |
alias vc_pool_4 "vc_symb_neg_remark_0" | |
alias vc_dist_danger_incoming "voicemenu 1 0; vc_rebind" | |
alias vc_dist_danger_spy "voicemenu 1 1; vc_rebind" | |
alias vc_dist_danger_sentry "voicemenu 1 2; vc_rebind" | |
alias vc_dist_engineer_dispenser "voicemenu 1 4; vc_rebind" | |
alias vc_dist_engineer_teleporter "voicemenu 1 3; vc_rebind" | |
alias vc_dist_engineer_sentry "voicemenu 1 5; vc_rebind" | |
alias vc_dist_agree_yes "voicemenu 0 6; vc_rebind" | |
alias vc_dist_agree_no "voicemenu 0 7; vc_rebind" | |
alias vc_dist_cardinal_left "voicemenu 0 4; vc_rebind" | |
alias vc_dist_cardinal_right "voicemenu 0 5; vc_rebind" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment