mIRC Homepage
Posted By: sNif #channel detection - 17/04/03 07:56 PM
Can someone tell me a good "#channel-detection" source for C/C++?

I mean in mIRC if someones says #channel then if i put my cursor on it, then the cursor-pic will change... etc. and i can click it. so its like some kind channel detection ?
Posted By: codemastr Re: #channel detection - 17/04/03 09:19 PM
C/C++? In case you haven't noticed, these are mIRC forums, not C/C++ forums.
Posted By: Watchdog Re: #channel detection - 20/04/03 05:34 PM
What exactly is this "channel detection" meant to do?

If it is anti-advertising then just nail something like this:
Code:
ON *:TEXT:*:#: {
  if ($chr(35) isin $1- && # !isin $1-) {
    kick # $nick No advertising!
  }
}
© mIRC Discussion Forums