Here's a tip on how to be a bit more lenient on how he responds, instead of depending on particular phrases.
on *:TEXT:*:#: {
if ($pos($1-,metbot,0) > 0 && $pos($1-,time,0) > 0) msg $chan It's $asctime(hh:nntt) $+ , dummy.
}
This one will let him respond to anything with the word "metbot" and "time" in it, in any order.
Keep in mind, if you use "on *:TEXT:*:#:", you can only have one of these remotes. That means you'll have to do all your matching inside of this same remote. So to add in another command, just add below the last IF check:
on *:TEXT:*:#: {
if ($pos($1-,metbot,0) > 0 && $pos($1-,time,0) > 0) msg $chan It's $asctime(hh:nntt) $+ , dummy.
if ($pos($1-,Guess what Kakarot?,0) > 0) msg $chan IT'S OVER NINE THOUSAAAAND
}
To anyone else who wants Metbot's responses to gray out like Fyborg's do, assuming you use the script I made recently, here's an updated version which works on both bots:
on ^*:TEXT:*:#: {
if ($nick == Fyborg || $nick == Metbot) { echo 15 -ti2 $chan $chr($asc([)) $+ $nick $+ ] $1- | halt }
}
It should appear fairly simple to edit, but if you need to add more to it and don't know how, just ask.