mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2008
Posts: 329
A
AWEstun Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: May 2008
Posts: 329
How would I go about putting multiple channels from different servers on the same window? I.E.

<bobby:server1:#apple> ...

<cindy:server3:#bananna> ...


I registered; you should too.
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Give this a try, it worked for me, but if I recall correctly there's a fair bit on the network you're working with that doesn't match the standards, so give it a try. I also included a couple of extras that you didn't ask for, but made sense to me.

Code:
on *:start:{
  window @all
}
on ^*:text:*:*:{
  .aline @all $+(<,$nick,:,$server,:,$iif($chan,$chan)) $1-
  haltdef
}
on ^*:notice:*:*:{
  .aline @all $+(<,$nick,:,$server,:,$iif($chan,$chan)) $1-
  haltdef
}
on ^*:action:*:*:{
  .aline @all $+(<,$nick,:,$server,:,$iif($chan,$chan)) $1-
  haltdef
}
on me:*:join:#:{
  window -h $chan
}
on *:connect:{
  window -h "status window"
}


Link Copied to Clipboard