55 lines
2.9 KiB
INI
55 lines
2.9 KiB
INI
// =============================================
|
|
// INFO TOGGLE — F4
|
|
// F4 x1 = режим 1 (всё)
|
|
// F4 x2 = режим 2 (только гранаты/действия)
|
|
// F4 x3 = выкл
|
|
// =============================================
|
|
|
|
// --- Движение ---
|
|
alias +t_w "+forward; say Бегу вперед"
|
|
alias -t_w "-forward"
|
|
alias +t_a "+left; say Стрейф влево"
|
|
alias -t_a "-left"
|
|
alias +t_s "+back; say Бегу назад"
|
|
alias -t_s "-back"
|
|
alias +t_d "+right; say Стрейф вправо"
|
|
alias -t_d "-right"
|
|
|
|
// --- Действия ---
|
|
alias +t_space "+jump; say Прыгнул!"
|
|
alias -t_space "-jump"
|
|
alias +t_shift "+sprint; say Крадусь!"
|
|
alias -t_shift "-sprint"
|
|
alias +t_ctrl "+duck; say Присел!"
|
|
alias -t_ctrl "-duck"
|
|
|
|
// --- Гранаты и предметы ---
|
|
alias t_4 "slot6; say Достал хаешку!"
|
|
alias t_m4 "slot7; say Достал флешку!"
|
|
alias t_m5 "slot8; say Достал смок!"
|
|
alias t_m3 "slot10; say Достал молик!"
|
|
alias t_x "player_ping; say Пинганул!"
|
|
alias +t_knife "slot3; say Достал нож!"
|
|
alias -t_knife "lastinv"
|
|
alias +t_c4 "slot5; say Достал бомбу!"
|
|
alias -t_c4 "drop; say Скинул бомбу команде, несите сами"
|
|
alias +t_r "+reload; say Перезаряжаюсь, прикройте!"
|
|
alias -t_r "-reload"
|
|
alias +t_f "+lookatweapon; say Смотрю на своё красивое оружие"
|
|
alias -t_f "-lookatweapon"
|
|
|
|
// =============================================
|
|
|
|
// Режим 1 — всё
|
|
alias troll_on "bind w +t_w; bind a +t_a; bind s +t_s; bind d +t_d; bind SPACE +t_space; bind SHIFT +t_shift; bind CTRL +t_ctrl; bind 4 t_4; bind MOUSE4 t_m4; bind MOUSE5 t_m5; bind MOUSE3 t_m3; bind x t_x; bind q +t_knife; bind z +t_c4; bind r +t_r; bind f +t_f; alias troll_toggle troll_on2; say Внимание!!! Включен PRO122 конфиг; echo [PRO122] ВКЛ"
|
|
|
|
// Режим 2 — только гранаты и действия
|
|
alias troll_on2 "bind w +forward; bind a +left; bind s +back; bind d +right; bind SPACE +t_space; bind SHIFT +t_shift; bind CTRL +t_ctrl; bind 4 t_4; bind MOUSE4 t_m4; bind MOUSE5 t_m5; bind MOUSE3 t_m3; bind x t_x; bind q +t_knife; bind z +t_c4; bind r +t_r; bind f +t_f; alias troll_toggle troll_off; say Внимание!!! PRO122.cfg переключен на второй режим; echo [PRO122] Режим 2 ВКЛ"
|
|
|
|
// Выкл
|
|
alias troll_off "bind w +forward; bind a +left; bind s +back; bind d +right; bind SPACE +jump; bind SHIFT +sprint; bind CTRL +duck; bind 4 slot6; bind MOUSE4 slot7; bind MOUSE5 slot8; bind MOUSE3 slot10; bind x player_ping; bind q +knife; bind z +c4; bind r +reload; bind f +lookatweapon; alias troll_toggle troll_on; say Конфиг PRO122 отключен; echo [PRO122] ВЫКЛ"
|
|
|
|
alias troll_toggle troll_on
|
|
bind F4 troll_toggle
|
|
echo [PRO122] Toggle loaded! F4 = вкл/выкл
|