Quote:
If you are on multiple channels, and the same user joins several of them, your script will whois them for each channel they join. Some servers may consider many whois's on the same person in a short time to be a flood. To prevent flooding like that, you can use a script like this:

Code:
on *:CONNECT: unset %wdelay.*
on *:JOIN:#:{
  if ($($+(%,wdelay.,$cid,.,$nick),2) != 1) {
    set -u10 $+(%,wdelay.,$cid,.,$nick) 1
    whois $nick $nick
  }
}


This code will delay whois'ing the same person for 10 seconds.

-genius_at_work



ok where do i add this one at in there
?

as a stand alone ?

or ?

when i copy and paste that into my remotes it pastes it as one single line all the way across the box

is this good or bad ?

or do i need to break it up into 7 lines like you are showing?

thanks

Last edited by fast68; 07/12/05 03:12 PM.