mIRC Home    About    Download    Register    News    Help

Print Thread
#106889 05/01/05 08:19 AM
Joined: Jan 2003
Posts: 109
S
Vogon poet
OP Offline
Vogon poet
S
Joined: Jan 2003
Posts: 109
Hi there

Just wondering how I can do an on TEXT for when the asterisk symbol * appears in the channel, as:
on *:TEXT:***:#channel
just reads everything as a wildcard...is there a way to separate the * so it recognises it as the symbol rather than a wildcard?

Thanks in advance for any help...


#Newsroom
Where News & Markets Connect
http://www.inewsroom.net
#106890 05/01/05 09:30 AM
Joined: Aug 2003
Posts: 1,831
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,831
  • The $ prefix
    Indicates that the matchtext section of a definition contains a regular expression.

Code:
on $*:text:/\*/:#channel:{ }


Link Copied to Clipboard