mIRC Home    About    Download    Register    News    Help

Print Thread
#65005 23/12/03 06:29 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
How to "disable" x join from been displayed in channel?.. :tongue:

on 1:input:*:{
if ($1 = x) && %short.x == on {
if ($2 = join) {
.msg x join $chan
}
if ($2 = part) {
.msg x part $chan
blablablblalbla

my english sux, yeah i know..

#65006 23/12/03 07:13 PM
Joined: Nov 2003
Posts: 227
H
Fjord artisan
Offline
Fjord artisan
H
Joined: Nov 2003
Posts: 227
just put a halt at the end, this will stop you messaging the channel x join etc.
Code:
on 1:input:*:{ 
  if ($1 = x) && %short.x == on {
    if ($2 = join) {
    .msg x join $chan
    halt
  }
  if ($2 = part) {
    .msg x part $chan
    blablablblalbla
    halt
    }
  }
}

#65007 23/12/03 07:54 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
thanks... wink


Link Copied to Clipboard