mIRC Home    About    Download    Register    News    Help

Print Thread
#148156 30/04/06 07:16 PM
Joined: Sep 2005
Posts: 53
C
Babel fish
OP Offline
Babel fish
C
Joined: Sep 2005
Posts: 53
Im trying to make this script so that if anyone notices me and the word 'closing' is involved i will reply.
Code:
on *:Notice:*:?: {
/msg $nick Lalal
}

on *:Notice: * :?: {
^ Make this part so if someone says, 'we're closing' or 'closing door' ill reply. But 'we're closing' is oly apart of the other persons message, so their full message would be 'we're closing, please logout' and i would reply Lalal.

#148157 30/04/06 07:27 PM
Joined: Apr 2006
Posts: 464
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Apr 2006
Posts: 464
Code:
on *:NOTICE:*closing*:?:{ notice $nick Lalal }


Try /help on notice

#148158 30/04/06 08:21 PM
Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
This is more sufficient in my opinion.

Code:
on $*:NOTICE:/\bclosing\b/iS:?:{
  notice $nick Lalal
}


Link Copied to Clipboard