mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2020
Posts: 19
K
Kendy Offline OP
Pikka bird
OP Offline
Pikka bird
K
Joined: May 2020
Posts: 19
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,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Code
on *:quit:{
  if ($nick ison #logchan) && ($me ison #logchan) && ($comchan($nick,0) > 1) { msg #logchan (your message here) }
}


Link Copied to Clipboard