mIRC Home    About    Download    Register    News    Help

Print Thread
K
Kendy
Kendy
K
Please help me to make a short snippets when someone is quits in #channel1,#channel2 the bot will msg to #logchan.
If nick (nick quits) is on #logchan only,the script don't msg to #logchan.
Thanks for help!

Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
Code
on *:quit:{
  if ($nick ison #logchan) && ($me ison #logchan) && ($comchan($nick,0) > 1) { msg #logchan (your message here) }
}


Link Copied to Clipboard