mIRC Homepage
Posted By: learn3r An auto part - 09/04/07 04:21 PM
how to auto part my nick if the channel where i am in went down on only 10 users...???

Quote:
on *:part:#:
on *:disconnect:

Posted By: hixxy Re: An auto part - 09/04/07 04:26 PM
Code:
on !*:part:#:{ 
  if ($nick($chan,0) <= 10) { part $chan }
}
on *:kick:#:{
  if ($nick($chan,0) <= 10) && ($knick != $me) { part $chan }
}
on !*:quit:{
  var %i = 1
  while ($chan(%i)) {
    if ($nick($v1,0) <= 10) { part $chan(%i) }
    inc %i
  }
}
© mIRC Discussion Forums