Advertisement
illpastethat

Mass Highlight for leal9001

Sep 9th, 2011
561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.33 KB | None | 0 0
  1. ;I didn't make this
  2. ;Syntax is /highlight #CHANNEL
  3. alias highlight {
  4.   if (!$1) {
  5.     echo -ac info * /highlight: No Channel Specified
  6.     halt
  7.   }
  8.   var %i = 0
  9.   var %string = ""  
  10.   while (%i < $nick($1, 0)) {
  11.     inc %i
  12.     set %string $addtok(%string,$+($chr(32),$nick($1,%i)),44)
  13.   }
  14.   msg $1 %string
  15.   unset %string
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement