Originally Posted By: MrX
Code:
on *:text:Coffee:*: {
    msg $chan $read(C:\Program Files\mIRC\coffee.txt)
}


That code wil work on any chanel with the word Coffee


btw about that "easy" script, read this:

* matches any TEXT (not possable in this script)

& matches any WORD (not possable in this script)

Coffee matches if text contains only this word

Coffee* matches if text starts with this word

*Coffee matches if text ends with this word

*Coffee* matches if text contains this word anywhere

Last edited by MrX; 11/01/08 07:20 PM.