Originally Posted By: RusselB
Code:
on me:*:join:#:{
  updatenl
  var %i = 1
  while $nick($chan,%i,o) {
    .protect $nick(#,%i,o) $chan 2 $network
    inc %i
  }
}

If you don't want the protection to be channel specific, remove the $chan from protect line, also, if you don't want it to be network specific, remove the $network from that same line.


I leave the 2 or I remove it too? like this?

Code:
on me:*:join:#:{
  updatenl
  var %i = 1
  while $nick($chan,%i,o) {
    .protect $nick(#,%i,o) 2
    inc %i
  }
}


whats updatenl? I cant find it in the helpfile...

which is better?
this
https://forums.mirc.com/ubbthreads.php?ubb=showflat&Number=175999&page=0#Post175950
or this
https://forums.mirc.com/ubbthreads.php?ubb=showflat&Number=175999&page=0#Post175964

(both doesnt work for me)

Last edited by nataliad; 01/05/07 08:34 PM.