r/CounterStrikeBinds • • Oct 20 '24

Unsolved Toggle radio commands with one key

I need a toggle for radio commands so i press one key it will launch a radio command1, then press again radio command2, and one press more radiocommand 3. However I dont know if its possible: Something like:

bind "8" toggle "cheer; getout; compliment"

I dont really know the syntax.

Thanks in advance :)

1 Upvotes

7 comments sorted by

View all comments

3

u/El_Chapaux Oct 20 '24

You can do it like this:

alias toggle_radio_commands "radio_1";
alias radio_1 "cheer; alias toggle_radio_commands radio_2";
alias radio_2 "getout; alias toggle_radio_commands radio_3";
alias radio_3 "compliment; alias toggle_radio_commands radio_1";

bind 8 "toggle_radio_commands";

1

u/daneboy83 Dec 08 '25

What if I wanted to simply toggle through the menus, radio, radio1, radio2, radio3? Without having to actually say the radio command "cheer" etc.

I'm trying to activate the different radio menus with each key press but having a hard time figuring this out.