mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Sep 2003
Posts: 13
I
Pikka bird
OP Offline
Pikka bird
I
Joined: Sep 2003
Posts: 13
is there a way to leave a channel without closing the window?
so when i leave a channel i can still see the text

Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
no. Plain and simple. Please dont flame about "use search" ppl, its gets tiresome. Not hard to type two letters...


-KingTomato
Joined: May 2003
Posts: 161
A
Vogon poet
Offline
Vogon poet
A
Joined: May 2003
Posts: 161
If there's some text in the channel you want to peruse later, you should just /savebuf it.

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
slow but works grin
Code:
alias part {
  .var %i 1,%chan $iif($1,$1,$active)
  .window -aehkl12 $+(@,%chan)
  while (%i <= $line(%chan,0)) {
    .write text.txt $line(%chan,%i)
    .inc %i
  }
  %i = 1
  while (%i <= $nick(%chan,0)) {
    .write nicks.txt $nick(%chan,$nick(%chan,%i)).pnick
    .inc %i
  }
  %i = 1
  while (%i <= $lines(nicks.txt)) {
    .aline -l $+(@,%chan) $read(nicks.txt,%i)
    .inc %i
  }
  %i = 1
  while (%i <= $lines(text.txt)) {
    .aline $+(@,%chan) $read(text.txt,%i)
    .inc %i
  }
  .!part %chan
  .window -w $+(@,%chan)
  .remove nicks.txt
  .remove text.txt
}

it doesnt leave the window open, but rather makes a replacement cool
if you decide to keep that, but sometimes you want to use /part as it normally works, type: /!part


new username: tidy_trax

Link Copied to Clipboard