I'm not a huge fan of mIRC, but I could do it in mIRC scripting. I'm trying to make something for when someone does !something in the channel, it will output a predefined string like for example
I've looked at some TCL scripts, and this is what I tried, but it didnt work at all<MIXX941> !hello
<Bot> Hi, how are you?
Code: Select all
set hitrigger "!hello"
proc hi { target } {
global hitrigger
putserv "privmsg #channel :Hi, how are you?"
}
Thanks
-Mark