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)