mIRC Home    About    Download    Register    News    Help

Print Thread
#100900 18/10/04 09:35 AM
Joined: Jun 2004
Posts: 124
S
sigbin Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 124
how can i echo to the status window the JOINS/PARTS/QUITS
coz i want to select only some users to be seen there JOINS/PARTS/QUITS
Code:
 on ^*:JOIN:#fusion:if ([*]-Server iswm $nick) { haltdef | echo -s Join: $nick }
on ^*:PART:#fusion:if ([*]-Server iswm $nick) { haltdef | echo -s Part: $nick }
on ^*:QUIT:if ([*]-Server iswm $nick) { haltdef | echo -s Quit: $nick }
 

like this.... the problem is only nicks are echoed to the status window

#100901 18/10/04 02:27 PM
Joined: Mar 2004
Posts: 45
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Mar 2004
Posts: 45
I'm not exactly sure what you want but try this:
Code:
  
on ^*:JOIN:#fusion: {
  if ([*]-Server iswm $nick) { 
    echo -s Join: $nick
    haltdef
  } 
}
on ^*:PART:#fusion: {
  if ([*]-Server iswm $nick) {
    echo -s Part: $nick 
    haltdef
  }
}
on ^*:QUIT: { 
  if ([*]-Server iswm $nick) {
    echo -s Quit: $nick 
    haltdef
  }
}

#100902 18/10/04 04:22 PM
Joined: Jun 2004
Posts: 124
S
sigbin Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 124
i wanted it to echo the whole of this
"nick (~ident@ip.address.xxx)" like what you seen in the joins, quits and parts...

#100903 18/10/04 04:40 PM
Joined: Mar 2004
Posts: 45
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Mar 2004
Posts: 45
Ok, try /help $address


Link Copied to Clipboard