mIRC Home    About    Download    Register    News    Help

Print Thread
#64660 21/12/03 02:50 AM
Joined: Sep 2003
Posts: 584
B
bunar Offline OP
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Sep 2003
Posts: 584
/part chan (msg)
/partall

exist...


how to make an option in popups:

"part all but active"


??

#64661 21/12/03 03:01 AM
Joined: Nov 2003
Posts: 227
H
Fjord artisan
Offline
Fjord artisan
H
Joined: Nov 2003
Posts: 227
could have an alias like:
Code:
alias partsome {
  if ($active !ischan) { partall }
  else {
    var %x = $chan(0) , %c
    while (%x) {
      if ($chan(%x) == $active) { dec %x }
      %c = $addtok(%c,$chan(%x),44)
      dec %x
    }
    part %c $1-
  }  
}

I think that should work with most ircds. If not you will need to make seperate part commands for each channel.
Then just link that alias to your popup.

#64662 21/12/03 03:05 AM
Joined: Sep 2003
Posts: 584
B
bunar Offline OP
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Sep 2003
Posts: 584
wow, didnt knew some1 is awake this late !
thanks much !

#64663 21/12/03 03:07 AM
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Look on top of this page, then you see: "Who's Online" , klick there and you see if it's people online on the forum or not grin


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
#64664 21/12/03 03:11 AM
Joined: Sep 2003
Posts: 584
B
bunar Offline OP
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Sep 2003
Posts: 584
yeah i know =))


Link Copied to Clipboard