mIRC Home    About    Download    Register    News    Help

Print Thread
#269625 19/11/21 09:34 AM
Joined: Mar 2021
Posts: 25
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Mar 2021
Posts: 25
alias selecsoun { set %iir $sfile(#,1) }
alias f3 { .echo -a 0,1Sound/Play Mute on | sound on }
alias f4 { .echo -a 0,1Sound/Play Mute off | sound off }

alias sonido {
sound %iir
}

how i do to mute the sound?

Joined: Jul 2014
Posts: 313
Pan-dimensional mouse
Offline
Pan-dimensional mouse
Joined: Jul 2014
Posts: 313
Originally Posted by danielboom
alias selecsoun { set %iir $sfile(#,1) }
alias f3 { .echo -a 0,1Sound/Play Mute on | sound on }
alias f4 { .echo -a 0,1Sound/Play Mute off | sound off }

alias sonido {
sound %iir
}

how i do to mute the sound?


I don't know if you intend to silence all mIRC sounds, if so I hope it helped:
Code
alias f3 {
  if ($donotdisturb == $false) {
    .echo -a 0,1Sound/Play Mute on
    donotdisturb
  }
}
alias f4 {
  if ($donotdisturb == $true) {
    .echo -a 0,1Sound/Play Mute off
    donotdisturb
  }
}


TECO
irc.PTirc.org (Co-Admin)
Joined: Jan 2004
Posts: 2,127
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2004
Posts: 2,127

maroon #269634 20/11/21 09:02 PM
Joined: Mar 2021
Posts: 25
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Mar 2021
Posts: 25
i read twenty times

TECO #269635 20/11/21 09:03 PM
Joined: Mar 2021
Posts: 25
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Mar 2021
Posts: 25
muito brigado


Link Copied to Clipboard